在C++中,可以使用std::string
类的length()
方法来求字符串的长度,也可以使用size()
方法来获取字符串的长度。示例如下:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
// 使用length()方法求字符串长度
int len1 = str.length();
// 使用size()方法求字符串长度
int len2 = str.size();
std::cout << "Length of string using length() method: " << len1 << std::endl;
std::cout << "Length of string using size() method: " << len2 << std::endl;
return 0;
}
以上代码将输出:
Length of string using length() method: 13
Length of string using size() method: 13
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: C++中internetopen的作用是什么