我需要使用一个std::字符串来存储由fgets()检索的数据。为此,我需要将fgets()的char*返回值转换为std::string存储在数组中。如何做到这一点呢?
当前回答
string有一个构造函数:
const char *s = "Hello, World!";
std::string str(s);
注意,这个构造深度复制s处的字符列表,s不应该是nullptr,否则行为未定义。
其他回答
char* data;
std::string myString(data);
const char* charPointer = "Hello, World!\n";
std::string strFromChar;
strFromChar.append(charPointer);
std::cout<<strFromChar<<std::endl;
不知道为什么除了Erik之外没有人提到这一点,但根据这一页,赋值操作符工作得很好。不需要使用构造函数、.assign()或.append()。
std::string mystring;
mystring = "This is a test!"; // Assign C string to std:string directly
std::cout << mystring << '\n';
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();
推荐文章
- 为什么我的程序不能在Windows 7下用法语编译?
- 如何获取变量的类型?
- 什么是奇怪的重复模板模式(CRTP)?
- 连接两个向量的最佳方法是什么?
- 在c++中,是通过值传递更好,还是通过引用到const传递更好?
- 在STL中deque到底是什么?
- Windows上最好的免费c++分析器是什么?
- 如何自动转换强类型枚举为int?
- 在一个类中使用具有成员函数的泛型std::function对象
- 'for'循环中的后增量和前增量产生相同的输出
- 虚函数和纯虚函数的区别
- c++中的_tmain()和main()有什么区别?
- 内存泄漏是否正常?
- 当启用c++ 11时,std::vector性能回归
- 什么时候使用哪种指针?