包含头文件:#include <string>
- C++
string
与C语言char*
之间的相互转换str.c_str()
std::string()
- 字符串与
float
/int
之间的相互转换- 字符串转
int
/float
利用std::stoi
将字符串转为整型 / 转为float型:std::stof
, 即string-to-float int
/float
转字符串std::to_string()
- 字符串转
- 返回字符串长度
- C++中的字符串
std::string
可以视为std::vector<char>
类型,因此可以用.size()
函数返回字符串的字符长度(不含'\n'结尾符号),同.length()
方法。
- C++中的字符串