【CANoe之CAPL基础学习_函数用法4】
前言
本文适合于新手使用CANoe进行基础CAPL编程。
void getLocalTime(long time[])
函数说明:获取本地计算机时间
函数形参:输入时间参数数组(数据类型long型)
函数解析:定义好时间数组,最小长度为8。此函数会将对应数组位分别赋值时间单位。
数据检索
0 :Seconds (0 - 59)
1 : Minutes (0 - 59)
2 :Hours (0 - 23)
3 :Day of month (1 - 31)
4 :Month (0 - 11)
5 :Year (0 - xxx, offset of 1900, e.g. 117 = 2017)
6- :Day of week (0 - 6, sunday is 0)
7 : Day of Year (0 - 365)
8 : Flag for daylight saving time (0 - 1, 1 = daylight saving time)
代码举例:
long tm[9];
getLocalTime(tm);
// now tm contains the following entries:
// tm[0] = 3; (seconds)
// tm[1] = 51; (minutes)
// tm[2] = 16; (hours)
// tm[3] = 21; (day of month)
// tm[4] = 7; (month stating with 0)
// tm[5] = 98; (year)
// tm[6] = 5; (weekday)
// tm[7] = 232;(day of year)
// tm[8] = 1; (Summer time)
...