在C++中,length函數通常用于獲取字符串的長度。例如,我們可以使用length函數來獲取一個字符串變量的長度,示例如下:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello World";
int len = str.length();
std::cout << "Length of the string: " << len << std::endl;
return 0;
}
在上面的示例中,我們定義了一個字符串變量str,并使用length函數獲取了該字符串的長度,然后將結果打印到控制臺上。因此,length函數可以幫助我們獲取字符串的長度,從而進行相應的處理或操作。