C++取字符串长度函数三种方法

Posted perseverance52

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++取字符串长度函数三种方法相关的知识,希望对你有一定的参考价值。

C++取字符串长度函数三种方法

实例代码

#include <iostream>
#include <cstring> //调用strlen()函数需要使用该文件
using namespace std;

int main()
{
  string str = "Test string";
  char *ch = (char *)"perseverance51"; //需要强制类型转换
  char const *ch2 = "Are you OK!";
  cout << str.size() << endl;
  cout << str.length() << endl;
  cout << strlen(ch) << endl;
  cout << strlen(ch2) << endl;
  return 0;
}
  • 打印结果

以上是关于C++取字符串长度函数三种方法的主要内容,如果未能解决你的问题,请参考以下文章

求字符串长度函数实现的三种方法

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情

颠倒字符串的三种方法

excel函数字符串长度限制的使用方法有哪些?

c++字符串长度函数

JavaScript 有用的代码片段和 trick