c++中string的length和size
时间: 2023-04-30 16:02:18 浏览: 121
c中string的sizelengthcapacity三者到底有何区别求解.docx
在 C++ 中,string 类型的 length 和 size 方法都用来返回字符串的长度。它们是等效的,都是返回字符串中字符的数量,且都是常数时间复杂度。例如:
string s = "Hello, World!";
cout << s.length(); // 输出 13
cout << s.size(); // 输出 13
阅读全文