不存在合适的构造函数来将 char 转换为 string

发布于 2024-11-03 19:48:53 字数 398 浏览 0 评论 0原文

我在一个类中定义了一个 createdirectory(const stdStr& path),并且我使用 Directory::CreateDirectory("C:\\Temp");Directory::CreateDirectory("C:\\Temp"); 从另一个类访问该函数code>

我在“C”\Temp”上收到错误消息,指出“

no suitable constructor exists to convert from "const char [4]" to "std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>"

I have defined a createdirectory(const stdStr& path) in a class and I am accessing that function from another class using Directory::CreateDirectory("C:\\Temp");

I am getting an error on "C"\Temp" saying that "

no suitable constructor exists to convert from "const char [4]" to "std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昨迟人 2024-11-10 19:48:53

因为您的 "C:\\Temp" 字符串是 char 数组,但该函数使用的是 wchar 模板化的字符串。就我个人而言,我像躲避瘟疫一样避免使用 Unicode,但我认为你需要 L"C:\\Temp" (注意前面的 L)。

Because your "C:\\Temp" string is an array of char, but the function is using a string templated on wchar. Personally, I avoid Unicode like the plague, but I think you need L"C:\\Temp" (note the preceding L).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文