原文: https://www.programiz.com/cpp-programming/examples/string-length
要理解此示例,您应该了解以下 C++ 编程主题:
您可以使用size()
函数或length()
函数获取字符串对象的长度。
size()
和length()
函数只是同义词,它们都做完全相同的事情。
#include <iostream>
using namespace std;
int main()
{
string str = "C++ Programming";
// you can also use str.length()
cout << "String Length = " << str.size();
return 0;
}
输出
String Length = 15
要获取 C 字符串的长度,可以使用strlen()
函数。
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str[] = "C++ Programming is awesome";
// you can also use str.length()
cout << "String Length = " << strlen(str);
return 0;
}
输出
String Length = 26