摘要:
#include "stdafx.h"#include <iostream>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int line = __LINE__; //注意:LINE前后分别是两个下划线“-”(半角状态下) char * file = __FILE__; cout<<line<<endl; cout<<file<<endl; return 0;} 阅读全文
posted @ 2011-08-17 11:07 ChessYoung 阅读(322) 评论(0) 推荐(0) 编辑