在C++中,可以使用std::string
類來表示字符串,并使用size()
成員函數來獲取字符串的長度。例如:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
int length = str.size();
std::cout << "The length of the string is: " << length << std::endl;
return 0;
}
在上面的例子中,str.size()
返回字符串str
的長度,并將其存儲在變量length
中。