C++ String 库 - size
描述
它以字节为单位返回字符串的长度。
声明
以下是 std::string::size 的声明。
size_t size() const;
C++11
size_t size() const noexcept;
参数
none
返回值
它以字节为单位返回字符串的长度。
异常
从不抛出任何异常。
示例
在下面的 std::string::size 示例中。
#include <iostream> #include <string> int main () { std::string str ("Sairaqmkrishna Mammahe"); std::cout << "The size of str is " << str.size() << " bytes.\n"; return 0; }
示例输出应该是这样的 −
The size of str is 22 bytes.