gpt4 book ai didi

c++ - 将 CString 转换为 std::wstring

转载 作者:IT老高 更新时间:2023-10-28 22:25:59 25 4
gpt4 key购买 nike

如何将 CString 转换为 std::wstring

最佳答案

CString 转换为 std::wstring:

CString hi("Hi");
std::wstring hi2(hi);

反之,使用 c_str():

std::wstring hi(L"Hi");
CString hi2(hi.c_str());

关于c++ - 将 CString 转换为 std::wstring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2041241/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com