溫馨提示×

c++中如何求字符串長度

c++
小億
191
2024-03-28 10:23:11
欄目: 編程語言

在C++中,可以使用std::string類的size()方法或者length()方法來獲取字符串的長度。示例代碼如下:

#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, World!";
    
    int length1 = str.size();
    int length2 = str.length();
    
    std::cout << "Length of the string is: " << length1 << std::endl;
    std::cout << "Length of the string is: " << length2 << std::endl;
    
    return 0;
}

以上代碼會輸出字符串Hello, World!的長度,即13。

0