// transform.cpp : 定义控制台应用程序的入口点。
//vs2010编译通过
#include "stdafx.h"
#include <afx.h> //包含CString头文件,并在项目属性里设置 "在共享dll中使用mfc"
#include <string>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
//CString to string
CString cstr(_T("hello"));
string str = (CStringA)cstr;
//string to CString
str = "nice";
cstr = CString(str.c_str());
return 0;
}
CString和string的相互转换
最新推荐文章于 2023-12-09 13:14:38 发布