gpt4 book ai didi

string - 从 std::string 转换为 String^

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:55 25 4
gpt4 key购买 nike

我在 C++ 中有一个函数,它有一个 std::string 类型的值,我想将它转换为 String^。

void(String ^outValue)
{
std::string str("Hello World");
outValue = str;
}

最佳答案

来自 MSDN:

#include <string>
#include <iostream>
using namespace System;
using namespace std;

int main() {
string str = "test";
String^ newSystemString = gcnew String(str.c_str());
}

http://msdn.microsoft.com/en-us/library/ms235219.aspx

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

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