摘要:
C: #include <string.h> 提供字符串操作函数 C++: #include <string> 提供一个字符串类,string 阅读全文
摘要:
1、string转char* ①、string.c_str()返回一个以'\0'结尾的字符数组; ②、string.data()仅返回字符串内容,而不含有结束符'\0'。 2、char数组转string char ch[]="hello world!"; string str(ch);或者 stri 阅读全文