在C++中,length()函數通常用于獲取字符串的長度,即字符串中字符的數量。這個函數通常用于標準庫中的string類,用來獲取字符串的長度。示例代碼如下:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
int len = str.length();
std::cout << "Length of the string is: " << len << std::endl;
return 0;
}
上面的代碼將輸出字符串"Hello, World!"的長度,即13。在C++中,字符串的長度通常是以字符的數量來表示,而不包括字符串結尾的空字符。