在 c++ 中定义字符串变量有以下几种方法:创建一个 char 数组:char str[] = “hello world”;使用 string 类:std::string str = “hello world”;指定字符数:char str[12] = “hello world”;使用初始化列表:std::string str = {“hello”, ” “, “world”};使用 string() 函数:std::string str = std::string(“hello world”)
如何在 C++ 中定义字符串变量
创建一个 char 数组
char str[] = "Hello World";
登录后复制
使用 string 类
std::string str = "Hello World";
登录后复制
指定字符数
char str[12] = "Hello World";
登录后复制
使用初始化列表
std::string str = {"Hello", " ", "World"};
登录后复制
使用 string() 函数
std::string str = std::string("Hello World");
登录后复制
详细说明
char 数组
char 数组本质上是包含字符的连续内存区域。它以 ‘