标签:style blog io color ar os 使用 sp 文件
CString是在windows平台下开发中经常使用的字符串类,
CString已从MFC中剥离出来了,可以单独使用,只需引用atlstr.h头文件即可。
1 include "stdafx.h" 2 #include <atlstr.h> 3 #include <iostream> 4 5 using namespace std; 6 7 int _tmain(int argc, _TCHAR* argv[]) 8 { 9 //控制台应用程序中使用CString 包含 atlstr.h头文件即可 10 CString str(_T("CString TEST!")); 11 wcout << str.GetBuffer() << endl; 12 return 0; 13 14 }
标签:style blog io color ar os 使用 sp 文件
原文地址:http://www.cnblogs.com/cmranger/p/4075110.html