如题,最近在看各种关于c++的资料,无意中发现**time__t**类型在VS2005之前是32位,于是我试着让现在已是64位的**time__t**使用原来的32位格式。查完各种资料,据说在文件头加上**#define USE_32BIT_TIME_T**就行,但是我在我写的.cpp文件头上加上这句话,使用**sizeof(time_t)**,竟然还是8而不是4,请问这个是为什么?
以下是程序最上面的那部分:
#define _USE_32BIT_TIME_T
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
#include <windows.h>
#include <time.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])