📜  C++ string.size()函数

📅  最后修改于: 2020-10-20 08:28:01             🧑  作者: Mango

C++ string.大小()

此函数用于返回以字节为单位的字符串长度。它定义了符合字符串对象内容的实际字节数,不一定等于容量。

句法

考虑一个名为“ str”的字符串对象。要计算此字符串对象的大小,其语法为:

str.size()

参量

此函数不包含任何参数。

返回值

此函数返回字符串对象中存在的字符数。

例子1

#include
using namespace std;
int main()
{
string str ="Welcome to the javatpoint tutorial";
int size = str.size();
cout << "length of the string is :" <

输出:

length of the string is : 34

在此示例中,str是一个字符串对象,包含值“ Welcome to the Javatpoint tutorial”。我们使用’size’函数计算字符串的长度。