64位时代来临了,升级到VC2008一定要多加小心!

今天碰到如下代码出现逻辑错误:
for(int nNo=1;nNo<=8;nNo++)
{
    char szSQL[256]={0};
    time_t mstime;
    time(&mstime);
    sprintf(szSQL, "update status set status='%s', mstime=%d where id=%d",strStatus[nNo].c_str(), mstime , nNo);
    pConn->Execute(szSQL);
}
每次执行,条件都是where id=0,百思不得其解,查看MSDN,发现原来time_t和time的内部实现已经变化,需要改变代码为:
__time32_t mstime;
_time32(&mstime);
sprintf(szSQL, "mstime=%d... "..,mstime, nNo);

或者需要定义这个宏:
_USE_32BIT_TIME_T
才可以,这个宏要写到项目属性里,或者stdafx的第一行,不然会出现:
.../VC/INCLUDE/sys/stat.inl(44) : error C2466: cannot allocate an array of constant size 0
错误。

time_t和time的默认已经变为64位实现了。
这个会导致升级到2008的VC代码产生很大的隐患,因为编译不会出错,但是执行结果却逻辑错误。看来升级到 VC2008的一定要注意,不然真的很危险。

MSDN:
time_t (__int64 or long integer)
 Represents time values in mktime, time, ctime, _ctime32, _ctime64, _wctime, _wctime32, _wctime64, ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s, ctime, _ctime32, _ctime64, _wctime, _wctime32, _wctime64 and gmtime, _gmtime32, _gmtime64. If _USE_32BIT_TIME_T is defined, time_t is a long integer. If not defined, it is a 64-bit integer.

你可能感兴趣的:(integer,c)