C++入门学习(十二)字符串类型

发布时间:2024年01月22日

上一节(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;  
}

?注意字符串使用的是双引号

文章来源:https://blog.csdn.net/2301_78420308/article/details/135755245
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。