码迷,mamicode.com
首页 > 编程语言 > 详细

C++笔记

时间:2016-12-18 14:33:14      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:blog   .cpp   html   ++   extc   例子   title   c++   cst   

1.CString和string的互相转换

 

CString->std::string 例子:

CString strMfc=“test“;

std::string strStl;

strStl=strMfc.GetBuffer(0);

std::string->CString  例子:

CString strMfc;

std::string strStl=“test“;

strMfc=strStl.c_str();

C++笔记

标签:blog   .cpp   html   ++   extc   例子   title   c++   cst   

原文地址:http://www.cnblogs.com/berwinsyu/p/6194039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!