我正在尝试构建一个可以重用的实用程序类,它可以转换std::string to a char*
:
char* Foo::stringConvert(std::string str){
std::string newstr = str;
// Convert std::string to char*
boost::scoped_array<char> writable(new char[newstr.size() + 1]);
std::copy(newstr.begin(), newstr.end(), writable.get());
writable[newstr.size()] = '\0';
// Get the char* from the modified std::string
return writable.get();
}
当我尝试从 stringConvert 函数中加载输出时,该代码有效,但是在我的应用程序的其他部分使用时,此函数返回垃圾。
例如:
Foo foo;
char* bar = foo.stringConvert(str);
上面的代码返回垃圾。这类问题有什么解决方法吗?