gpt4 book ai didi

c++ - 从 System::String^ 转换为 System::String

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:32 25 4
gpt4 key购买 nike

我有一个标准库字符串,我想进行如下转换:

System::String^ 到 std::string

最佳答案

std::string 转换为 System::String^ 的代码片段:

#include <msclr/marshal.h>

std::string str = "Hello World";
System::String^ result = msclr::interop::marshal_as<System::String^>(str.c_str());

System::String^ 转换为 std::string 的代码片段:

#include <msclr/marshal.h>

System::String^ str = "Hello World";
std::string result = msclr::interop::marshal_as<std::string>(str);

关于c++ - 从 System::String^ 转换为 System::String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54120549/

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