此函数用于以字节为单位查找字符串的长度。
这是符合 string 内容的实际字节数,不一定等于存储容量。
用法
int len = s1.length();
参数
此函数包含单个参数。
返回值
此函数以字节为单位返回整数值。
这里,s1 是一个字符串,strlen 函数计算字符串 s1 的长度并将其值存储在 len 变量中。
例子1
#include<iostream>
using namespace std;
int main()
{
string s1 = "Welcome to javatpoint";
int len = s1.length();
cout<< "length of the string is:" << len;
return 0;
}
输出:
Length of the string is 21
考虑一个字符串 s1 和 s1 包含值,即欢迎使用 javatpoint 。我们使用 strlen 函数计算字符串的长度并存储在变量 len 中。
相关用法
- C++ String swap()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ String begin()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String Find()用法及代码示例
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String replace()用法及代码示例
- C++ String at()用法及代码示例
- C++ String insert()用法及代码示例
- C++ String clear()用法及代码示例
- C++ String Data()用法及代码示例
- C++ String cend()用法及代码示例
- C++ String pop_back()用法及代码示例
- C++ String find_first_not_of()用法及代码示例
- C++ String find_last_of()用法及代码示例
注:本文由纯净天空筛选整理自 C++ String length()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。