码迷,mamicode.com
首页 > 其他好文 > 详细

QString->string->wstring->LPCWSTR

时间:2016-10-25 22:00:00      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:c_str   path   rds   pat   copy   字符   html   qstring   str   

QFileInfo info("./records.db");
std::string str = info.absoluteFilePath().toStdString(); //将QString转换为string
std::wstring wstr(str.length(), L‘ ‘);  //初始化宽字节wstr
std::copy(str.begin(), str.end(), wstr.begin());  //将str复制到wstr
LPCWSTR path = wstr.c_str();  //将wstr转换为C字符串的指针,然后赋值给path

转换过程:QString->string->wstring->LPCWSTR

http://www.cnblogs.com/luoxiang/p/5456173.html

QString->string->wstring->LPCWSTR

标签:c_str   path   rds   pat   copy   字符   html   qstring   str   

原文地址:http://www.cnblogs.com/findumars/p/5998411.html

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