tbool comparedatetime(tint ayear,tint amonth,tint aday)
{
ttime currttime;
currttime.hometime(); //当前时间
tdatetime adatetime;
adatetime.set ( ayear, tmonth(amonth), aday, 0, 0, 0, 0);
//用参数构建一个时间
ttime bartime(adatetime);
ttimeintervaldays dayval =7;
bartime +=(dayval);
//给构建的时间加7天.
if (currttime >bartime)
{
return etrue;
}
return efalse;
}
如果喜欢symbian 比较两个时间的大小 - symbian请收藏或告诉您的好朋友.
阅读(138) | 评论(0) | 转发(0) |