c++strlen的用法
时间: 2024-05-12 10:12:27 浏览: 50
C++,字符串方法strlen.docx
C++中的strlen函数用于计算字符串的长度,即字符串中字符的个数,不包括字符串末尾的'\0'。它的用法如下:
```c++
#include <cstring>
int strlen(const char* str);
```
其中,str是要计算长度的字符串,函数返回值是该字符串的长度。
示例代码如下:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str[] = "Hello, world!";
int len = strlen(str);
cout << "Length of string: " << len << endl;
return 0;
}
```
输出结果为:
```
Length of string: 13
```
阅读全文