string 转 lpctstr C++
我要使用MOVEFILE函数但是参数要求是LPCTSTR类型如何将string转换为LPCTSTR类型呢?不要用#undefUNICODE然后TEXT()的方法,因为#u...
我要使用MOVEFILE函数
但是参数要求是LPCTSTR类型
如何将string转换为LPCTSTR类型呢?
不要用#undef UNICODE然后TEXT()的方法,因为#undef UNICODE之后我其他的函数都不能用了。。 展开
但是参数要求是LPCTSTR类型
如何将string转换为LPCTSTR类型呢?
不要用#undef UNICODE然后TEXT()的方法,因为#undef UNICODE之后我其他的函数都不能用了。。 展开
2个回答
展开全部
范例:
string str = "hello";
CString cstr(str.c_str());
MoveFile(cstr,.....); //CString 自动转为LPCTSTR
string str = "hello";
CString cstr(str.c_str());
MoveFile(cstr,.....); //CString 自动转为LPCTSTR
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
基本上, 不就直接转型即可?
http://stackoverflow.com/questions/1200188/how-to-convert-stdstring-to-lpcstr
str.c_str() gives you a const char *, which is an LPCSTR (Long Pointer to Constant STRing) -- means that it's a pointer to a 0 terminated string of characters. W means wide string (composed of wchar_t instead of char).
http://www.cplusplus.com/reference/string/string/c_str/
http://stackoverflow.com/questions/1200188/how-to-convert-stdstring-to-lpcstr
str.c_str() gives you a const char *, which is an LPCSTR (Long Pointer to Constant STRing) -- means that it's a pointer to a 0 terminated string of characters. W means wide string (composed of wchar_t instead of char).
http://www.cplusplus.com/reference/string/string/c_str/
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询