Skip to content

2.6 字符串型

发布时间:

作用:用于表示一串字符
两种风格
1. **C风格宇符串:**char 变量名[ ]=“字符串值”
示例:

js
int main() {
     char str1[1 = "hello world"
     cout <‹ str1 <‹ endl;
     system("pause");
     return 0;
 }
   

注意:C风格的字符串要用双引1号括
2. C++风格字符串: string 变量名 ="字符串值” 示例:

js
int main() {
     string str = "hello world";
     cout <‹ str <‹ endl;
     system("pause");
     return 0;
}
   

注意:C++风格字符串,需要加入头文件#include