【CANoe之CAPL基础学习_函数用法4】

【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)
...

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

车端域控测试工程师

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值