在C++中,有多种方式可以定义并赋值字符串。
char str[] = "Hello World";
std::string
类:std::string str = "Hello World";
const char*
指针:const char* str = "Hello World";
std::string_view
类(C++17及以上版本):std::string_view str = "Hello World";
这些方法都可以用于定义字符串并赋值,选择哪一种方式取决于具体的需求和使用场景。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c++遍历数组的高效方法有哪些