ogre::string转化为std::string
时间: 2023-11-24 09:06:29 浏览: 128
pentest-notes::ogre:
可以使用`c_str()`函数将`ogre::string`转换为`std::string`。具体实现如下所示:
```cpp
ogre::string ogre_str = "Hello, world!";
std::string std_str = ogre_str.c_str();
```
其中,`c_str()`函数返回一个指向`ogre::string`内部字符数组的指针,该指针可以被转换为`std::string`类型。
阅读全文