在C++中,可以使用std::string
類的length()
函數或者size()
函數來計算字符串的長度。
以下是使用length()
函數的例子:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
int length = str.length();
std::cout << "字符串的長度為:" << length << std::endl;
return 0;
}
以下是使用size()
函數的例子:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
int length = str.size();
std::cout << "字符串的長度為:" << length << std::endl;
return 0;
}
無論哪種方法,都會返回字符串中字符的數量,包括空格和標點符號。