切记切记,中国时区是东八区,比零时区快8小时。
时间
戳在线转换工具:http://tool.chinaz.com/Tools/unix
time
.aspx
C++
time
函数相关知识参考地址:https://www.runoob.com/w3cnote/c-
time
-func-summary.html
获取整点
时间
戳(unix)
int GetZeroTs(int ts)
int eightHoursTs = 28800;
int oneDayTs = 86400;
return (ts+eight
如
当前
时间
为 2021-01-01 13:23:16 转换为2021-01-01 13:00:00
Long current
Time
= System.current
Time
Millis();
//获取
当前
时间
的整小时 +3600*1000*8 是因为 8个小时的时差 /(3600*1000)
计算
出总共有多少小时 % 24求余得出
当前
小时
long currentHour = ((current
Time
+3600*1000*8) / (3600*1000)) % 24
输出时分秒表示的
当前
时间
,格式形如 HH:MM:SS,其中 HH 表示时,值为 00 到 23,MM 表示分,值为 00 到 59,SS 表示秒,值为 00 到 59。
时、分、秒不足两位时补前导 0。
对于所有评测用例,给定的
时间
为不超过 10^18 的正整数。
注:需要以不足一天的秒数进
计算
#includ.