C++ 字符串 size()函数
这个函数用于以字节为单位返回字符串的长度。它定义了与字符串对象内容相符合的实际字节数,但不一定等于容量。
语法
考虑一个名为 ‘str’ 的字符串对象。要计算此字符串对象的大小,其语法如下:
str.size()
参数
此函数不包含任何参数。
返回值
此函数返回字符串对象中的字符数。
示例1
#include<iostream>
using namespace std;
int main()
{
string str ="Welcome to the javatpoint tutorial";
int size = str.size();
cout << "length of the string is :" <<size;
return 0;
}
输出:
length of the string is : 34
在这个示例中,str是一个包含值”Welcome to the javatpoint tutorial”的字符串对象。我们使用’size’函数计算字符串的长度。