溫馨提示×

c++怎么創(chuàng)建字符串

c++
小億
152
2024-01-09 21:08:19
欄目: 編程語言

在C++中,可以使用std::string類來創(chuàng)建字符串。下面是一些常見的創(chuàng)建字符串的方法:

  1. 使用字符串字面量創(chuàng)建字符串:
std::string str = "Hello, World!";
  1. 使用std::string構(gòu)造函數(shù)創(chuàng)建字符串:
std::string str("Hello, World!");
  1. 使用+操作符連接字符串:
std::string str1 = "Hello";
std::string str2 = "World";
std::string str = str1 + ", " + str2 + "!";
  1. 使用append()函數(shù)添加字符串:
std::string str = "Hello";
str.append(", World!");
  1. 使用insert()函數(shù)插入字符串:
std::string str = "Hello";
str.insert(5, ", World!");
  1. 使用substr()函數(shù)截取子字符串:
std::string str = "Hello, World!";
std::string subStr = str.substr(7, 5); // 從索引7開始截取長度為5的子字符串

這些只是一些創(chuàng)建字符串的常見方法,實際上還有很多其他操作和函數(shù)可以用來創(chuàng)建和操作字符串。

0