How to convert Platform::String to char*?(如何将 Platform::String 转换为 char*?)
问题描述
如何转换 Platform::String 的内容以供需要基于 char* 的字符串的函数使用?我假设 WinRT 为此提供了帮助函数,但我找不到它们.
How do I convert the contents of a Platform::String to be used by functions that expect a char* based string? I'm assuming WinRT provides helper functions for this but I just can't find them.
谢谢!
推荐答案
Platform::String::Data()
将返回一个 wchar_t const*
指向内容的字符串(类似于 std::wstring::c_str()
).Platform::String
代表一个不可变的字符串,因此没有访问器来获取 wchar_t*
.您需要复制其内容,例如转换为 std::wstring
,进行更改.
Platform::String::Data()
will return a wchar_t const*
pointing to the contents of the string (similar to std::wstring::c_str()
). Platform::String
represents an immutable string, so there's no accessor to get a wchar_t*
. You'll need to copy its contents, e.g. into a std::wstring
, to make changes.
没有直接方法来获得char*
或char const*
,因为Platform::String
使用宽字符(所有 Metro 风格应用程序都是 Unicode 应用程序).您可以使用 WideCharToMultiByte
转换为多字节.
There's no direct way to get a char*
or a char const*
because Platform::String
uses wide characters (all Metro style apps are Unicode apps). You can convert to multibyte using WideCharToMultiByte
.
这篇关于如何将 Platform::String 转换为 char*?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Platform::String 转换为 char*?
基础教程推荐
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04