2.6 字符串型
作用:用于表示一串字符
两种风格
C风格字符串:
char 变量名[] = "字符串值"
示例:
int main() {
char str1[] = "hello world";
cout << str1 << endl;
system("pause");
return 0;
}
C++风格字符串:
string 变量名 = "字符串值"
示例:
int main() {
string str = "hello world";
cout << str << endl;
system("pause");
return 0;
}
最后更新于
这有帮助吗?