• unity工具类篇 时间间隔帮助类(天、时、分、秒) 下篇


    using System;
    using UnityEngine;
    public class TimeTest : MonoBehaviour
    {
        DateTime startTime;
        private void Start()
        {
            //获取开始时的时间
            startTime = DateTime.Now;
        }
        private void Update()
        {
            if (Input.GetKeyDown(KeyCode.Z))
            {
                //获取当前时间,并打印当前时间与开始时间相差秒数(以秒为单位)
                DateTime curtimer = DateTime.Now;
                int timer = GetSubSeconds(startTime, curtimer);
                Debug.Log(timer);
            }
        }
        /// 
        /// 获取间隔秒数
        /// 
        /// 
        /// 
        /// 
        public int GetSubSeconds(DateTime startTimer, DateTime endTimer)
        {
            TimeSpan startSpan = new TimeSpan(startTimer.Ticks);
            TimeSpan nowSpan = new TimeSpan(endTimer.Ticks);
            TimeSpan subTimer = nowSpan.Subtract(startSpan).Duration();
            返回间隔秒数(不算差的分钟和小时等,仅返回秒与秒之间的差)
            //return subTimer.Seconds;
            //返回相差时长(算上分、时的差值,返回相差的总秒数)
            return (int)subTimer.TotalSeconds;
        }
        /// 
        /// 获取两个时间的相差多少分钟
        /// 
        /// 
        /// 
        /// 
        public int GetSubMinutes(DateTime startTimer, DateTime endTimer)
        {
            TimeSpan startSpan = new TimeSpan(startTimer.Ticks);
            TimeSpan nowSpan = new TimeSpan(endTimer.Ticks);
            TimeSpan subTimer = nowSpan.Subtract(startSpan).Duration();        
            返回相差时长(仅返回相差的分钟数)
            //return subTimer.Minutes;
            //返回相差时长(仅返回相差的总分钟数)
            return (int)subTimer.TotalMinutes;
        }
        /// 
        /// 获取两个时间的相差多少小时
        /// 
        /// 
        /// 
        /// 
        public int GetSubHours(DateTime startTimer, DateTime endTimer)
        {
            TimeSpan startSpan = new TimeSpan(startTimer.Ticks);
            TimeSpan nowSpan = new TimeSpan(endTimer.Ticks);
            TimeSpan subTimer = nowSpan.Subtract(startSpan).Duration();
            返回相差时长(仅返回相差的小时)
            //return subTimer.Hours;
    		//返回相差时长(返回相差的总小时数)
            return (int)subTimer.TotalHours;
        }
        /// 
        /// 获取两个时间的相差多少天
        /// 
        /// 
        /// 
        /// 
        public int GetSubDays(DateTime startTimer, DateTime endTimer)
        {
            TimeSpan startSpan = new TimeSpan(startTimer.Ticks);
            TimeSpan nowSpan = new TimeSpan(endTimer.Ticks);
            TimeSpan subTimer = nowSpan.Subtract(startSpan).Duration();
            返回相差时长(仅返回相差的天数)
            //return subTimer.Days;
    		//返回相差时长(返回相差的总天数)
    		return (int)subTimer.TotalDays;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
  • 相关阅读:
    vue3 的组件通信以及ref的使用
    rpm(基本命令、Makefile、建立rpmbuild编包)
    本节作业之求1~100平均数、奇数和、偶数和、能被3整除数的和、班级总成绩、平均成绩、打印星星、倒三角、正三角、九九乘法表、人的一生
    XXE漏洞中DOCTYPE、ENTITY傻傻分不清-WEB安全基础入门—XML外部实体注入(XXE)
    C#可视化 家用轿车信息查询系统(具体做法及全部代码)
    鸿蒙报错:Hhvigor Update the SDKs by going to Tools > SDK Manager....
    C#基于ScottPlot进行可视化
    Linux下的yum和vim
    FPGA/IC笔试题汇总
    numpy.unique 及其参数含义
  • 原文地址:https://blog.csdn.net/weixin_44720673/article/details/126095357