如題,最近在看各種關於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[])
要放在最前面,你stdafx.h裡面應該還包含了別的文件把,放在stdafx.h裡面的最前面