unity时间格式转换

简介: 时分秒显示 public string FormatTime(int totalSeconds) { int hours = totalSeconds / 3600; string hh = hours < 10 ? "0" + hours : hours.

时分秒显示


        public string FormatTime(int totalSeconds)
        {
            int hours = totalSeconds / 3600;
            string hh = hours < 10 ? "0" + hours : hours.ToString();
            int minutes = (totalSeconds - hours * 3600) / 60;
            string mm = minutes < 10f ? "0" + minutes : minutes.ToString();
            int seconds = totalSeconds - hours * 3600 - minutes * 60;
            string ss = seconds < 10 ? "0" + seconds : seconds.ToString();
            return string.Format("{0}:{1}:{2}", hh, mm, ss);
        }

分秒显示

        public string FormatTwoTime(int totalSeconds)
        {
            int minutes = totalSeconds / 60;
            string mm = minutes < 10f ? "0" + minutes : minutes.ToString();
            int seconds = (totalSeconds - (minutes * 60));
            string ss = seconds < 10 ? "0" + seconds : seconds.ToString();
            return string.Format("{0}:{1}", mm, ss);
        }

天显示

    public string FormatDayTime(int totalSeconds)
    {
        int days = (totalSeconds / 3600) / 24;
        string dd = days < 10 ? "0" + days : days.ToString();
        int hours = (totalSeconds / 3600) - (days * 24);
        string hh = hours < 10 ? "0" + hours : hours.ToString();
        int minutes = (totalSeconds - (hours * 3600) - (days * 86400)) / 60;
        string mm = minutes < 10f ? "0" + minutes : minutes.ToString();
        int seconds = totalSeconds - (hours * 3600) - (minutes * 60) - (days * 86400);
        string ss = seconds < 10 ? "0" + seconds : seconds.ToString();
        return string.Format("{0}:{1}:{2}:{3}", dd, hh, mm, ss);
    }

相关文章
|
iOS开发
uView的u-datetime-picker限制开始的年月日后ios显示不出来
uView的u-datetime-picker限制开始的年月日后ios显示不出来
338 0
|
C# 图形学
Unity获取系统时间-所有显示方式 DateTime类详解
Unity获取系统时间-所有显示方式 DateTime类详解 本文提供全流程,中文翻译。助力快速理解 Unity 以及 DateTime 时间类的用法 Unity获取系统时间 DateTime 类教程详解 Unity 中我们要获取时间,只需要使用 System 命名空间下的 DateTim.
6202 0
|
C# 前端开发
WPF DatePicker默认显示当前日期,格式化为年月日
原文:WPF DatePicker默认显示当前日期 WPF的日历选择控件默认为当前日期,共有两种方法,一种静态,一种动态。 静态的当然写在DatePicker控件的属性里了,动态的写在对应的cs文件里,具体请看下面。
6528 0
|
2月前
|
Python
python时间格式化/时间格式转换
python时间格式化/时间格式转换
30 0
|
4月前
|
JavaScript 前端开发
QML中的Date将时间戳和指定格式时间互转
QML中的Date将时间戳和指定格式时间互转
88 0
|
7月前
MFC添加年月日时分秒控件
MFC添加年月日时分秒控件
131 0
|
JavaScript 数据库
时间日期格式化 moment库的基本使用
注意:在时间格式的传输过程中, 我们为了能使时间在每一个地区都能准确获取的,一般存入数据库的都是,utf8 或者 是时间戳的形式, 因为时间戳和utf8的是一个标准,不会因为地区而异而改变
时间日期格式化 moment库的基本使用
|
JavaScript 前端开发 Java
js前端转换Date或秒数的时间格式
版权声明:本文为博主原创文章,如需转载,请标明出处。 https://blog.csdn.net/alan_liuyue/article/details/78981647 简介   1.
1294 0