c++ 中用 length() 函数求字符串长度,返回字符数量(包括空格)。语法:size_t length() const。
C++ 中求字符串长度的函数
在 C++ 中,使用 length() 函数可以求字符串的长度。该函数返回字符串中字符的数量,包括空白字符。
length() 函数的使用语法如下:
size_t length() const;
登录后复制
返回值:
- 返回一个 size_t 类型的值,表示字符串中的字符数量。
示例:
以下代码示例演示如何使用 length() 函数:
#include <iostream> #include <string> int main() { std::string str = "Hello, world!"; std::cout <p>输出:</p> <pre class="brush:php;toolbar:false">The length of the string is: 13
登录后复制
以上就是c++++中求字符串长度的函数的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:momo,转转请注明出处:https://www.dingdanghao.com/article/473234.html