我需要使用一个std::字符串来存储由fgets()检索的数据。为此,我需要将fgets()的char*返回值转换为std::string存储在数组中。如何做到这一点呢?
当前回答
大多数回答都在谈论如何构造std::string。
如果已经构造,只需使用赋值操作符。
std::string oString;
char* pStr;
... // Here allocate and get character string (e.g. using fgets as you mentioned)
oString = pStr; // This is it! It copies contents from pStr to oString
其他回答
char* data;
std::string myString(data);
string有一个构造函数:
const char *s = "Hello, World!";
std::string str(s);
注意,这个构造深度复制s处的字符列表,s不应该是nullptr,否则行为未定义。
通过构造函数传入:
const char* dat = "my string!";
std::string my_string( dat );
你可以使用string.c_str()函数来实现相反的效果:
std::string my_string("testing!");
const char* dat = my_string.c_str();
如果您已经知道char*的大小,可以使用这个
char* data = ...;
int size = ...;
std::string myString(data, size);
这没有使用strlen。
编辑:如果字符串变量已经存在,使用assign():
std::string myString;
char* data = ...;
int size = ...;
myString.assign(data, size);
大多数回答都在谈论如何构造std::string。
如果已经构造,只需使用赋值操作符。
std::string oString;
char* pStr;
... // Here allocate and get character string (e.g. using fgets as you mentioned)
oString = pStr; // This is it! It copies contents from pStr to oString
推荐文章
- 为什么STL如此严重地基于模板而不是继承?
- 查找当前可执行文件的路径,不包含/proc/self/exe
- 未定义对静态constexpr char的引用[]
- 在c++中,restrict关键字是什么意思?
- c++中类似于java的instanceof
- include_directories和target_include_directories在CMake中的区别是什么?
- std::make_pair与std::pair的构造函数的目的是什么?
- 如何追加一个字符到std::字符串?
- 为什么要在c++中使用嵌套类?
- 如何处理11000行c++源文件?
- 使用g++编译多个.cpp和.h文件
- 如何在c++中追加文本到文本文件?
- 在c++中使用"super
- Mmap () vs.读取块
- 什么是不归路?