I want to convert std::string into a const wchar_t *(我想将 std::string 转换为 const wchar_t *)
问题描述
有什么方法吗?我的电脑是AMD64.
Is there any method? My computer is AMD64.
::std::string str;
BOOL loadU(const wchar_t* lpszPathName, int flag = 0);
当我使用:
loadU(&str);
VS2005 编译器说:
the VS2005 compiler says:
Error 7 error C2664:: cannot convert parameter 1 from 'std::string *__w64 ' to 'const wchar_t *'
我该怎么做?
推荐答案
如果你有一个 std::wstring 对象,你可以在它上面调用 c_str()
来得到一个 wchar_t*代码>:
If you have a std::wstring object, you can call c_str()
on it to get a wchar_t*
:
std::wstring name( L"Steve Nash" );
const wchar_t* szName = name.c_str();
然而,由于您在一个狭窄的字符串上操作,您首先需要将其加宽.这里有多种选择;一种是使用Windows内置的MultiByteToWideChar
例程.这会给你一个 LPWSTR
,它等价于 wchar_t*
.
Since you are operating on a narrow string, however, you would first need to widen it. There are various options here; one is to use Windows' built-in MultiByteToWideChar
routine. That will give you an LPWSTR
, which is equivalent to wchar_t*
.
这篇关于我想将 std::string 转换为 const wchar_t *的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我想将 std::string 转换为 const wchar_t *
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01