上一节(C++入门学习(十一)字符型-CSDN博客)中我们学到如何表示和使用一个字符串,本篇文章是字符串(多个字符)。
定义字符串主要有两种方式:
第一种:
char str[] = "win";? //char 变量名[] = "字符串"
第二种:
#include <string>
string str1 = "winner"; /?/
两种方式代码:
#include <iostream>
#include <string>
using namespace std;
int main() {
char str[] = "win";
string str1 = "winner";
cout<<str<<endl;
cout<<str1<<endl;
return 0;
}
?注意字符串使用的是双引号