Skip to content

字符串

在 C++中,字符串可以通过多种方式来表示和使用。以下是一些基本的字符串操作:

声明和初始化字符串

cpp
// 使用C风格字符串
char str1[] = "Hello, world!";
char str2[50] = "This is a string";


// 使用C++风格字符串
#include <string>
std::string str3 = "Hello, world!";
std::string str4("This is a string");