string.size()函数
时间: 2023-11-18 14:05:33 浏览: 59
string函数
在C++中,string.size()函数返回字符串中字符的数量,即字符串的长度。例如,对于字符串str,可以使用str.size()来获取其长度。以下是一个示例:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "Hello World!";
std::cout << "The length of the string is: " << str.size() << std::endl;
return 0;
}
```
输出:
```
The length of the string is: 12
```
在上面的示例中,str.size()返回12,因为“Hello World!”字符串中有12个字符。
阅读全文