将 std::string 转换为 LPCSTR (指向常量字符串的长指针),只需调用 std::string 对象上的 c_str() 方法即可。这将返回一个指向内部以 null 结尾的字符串缓冲区的指针。
<code class="cpp">std::string myString = "Hello World!"; const char* lpcstr = myString.c_str();</code>
将 std::string 转换为 LPWSTR(指向常量宽的长指针) string)需要更多步骤:
<code class="cpp">int len = MultiByteToWideChar(CP_UTF8, 0, myString.c_str(), myString.size(), NULL, 0); wstring myWstring(len, '<pre class="brush:php;toolbar:false"><code class="cpp">const wchar_t* lpwstr = myWstring.c_str();</code>
不同术语在不同的上下文中引用指向字符串的指针:
“LP”前缀表示指针很长,但这在现代 Windows 开发中不再相关。
记住,LPWSTR 和 LPCWSTR 不是相同的。 LPCWSTR 是指向常量字符串的指针,而 LPWSTR 是指向可修改字符串的指针。
以上是如何在 std::string 和 LPCSTR/LPWSTR 之间转换?的详细内容。更多信息请关注PHP中文网其他相关文章!