当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ string::length()用法及代码示例


字符串作为数据类型

在 C 中,我们知道 string 本质上是一个以“\0”结尾的字符数组。因此,为了对字符串进行操作,我们定义了字符数组。但是在 C++ 中,标准库为我们提供了将字符串用作基本数据类型作为整数的便利。我们可以使用 length() 函数轻松找到字符串的长度。

原型:

    size_t string.length();

参数:

返回类型:size_t

例:

    Like we define and declare,

    string s1="Include", s2="Help";
    
    int i=s1.length(); //7
    int j=s2.length(); //4

    After concatenating:
    
    string s3=s1+s2;
    (s3 is "IcludeHelp")
    int k=s3.length(); //11

    string s4=s2+s1;
    (s4 is "HelpInclude")
    int r=s4.length(); //11

请记住,需要在“”下定义字符串变量(文字)。 'a' 是一个字符,而 "a" 是一个字符串。

需要的头文件:

    #include <string>
    Or
    #include <bits/stdc++.h>

C++程序演示string::length()函数的例子

#include <bits/stdc++.h>
using namespace std;

int main(){
	string s;
	
	cout<<"enter string\n";
	cin>>s;
	
	cout<<"length of the string is:"<<s.length();
	
	return 0;
}

输出

enter string
IncludeHelp
length of the string is:11


相关用法


注:本文由纯净天空筛选整理自 string::length() Function with Example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。