命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::size, std::basic_string<CharT,Traits,Allocator>::length

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
basic_string::sizebasic_string::length
修改器
搜索
操作
常量
非成员函数
I/O
比较
(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
字面量
辅助类
推导指南 (C++17)

 
size_type size() const;
(1) (自 C++11 起 noexcept)
(自 C++20 起 constexpr)
size_type length() const;
(2) (自 C++11 起 noexcept)
(自 C++20 起 constexpr)

返回字符串中 CharT 元素的数量,即 std::distance(begin(), end()).

内容

[编辑] 参数

(无)

[编辑] 返回值

字符串中 CharT 元素的数量。

[编辑] 复杂度

未指定

(直到 C++11)

常量

(自 C++11 起)

[编辑] 备注

对于 std::string,元素是字节(类型为 char 的对象),如果使用 UTF-8 这样的多字节编码,则它们与字符不同。

[编辑] 示例

#include <cassert>
#include <iterator>
#include <string>
 
int main()
{
    std::string s("Exemplar");
    assert(8 == s.size());
    assert(s.size() == s.length());
    assert(s.size() == static_cast<std::string::size_type>(
        std::distance(s.begin(), s.end())));
 
    std::u32string a(U"ハロー・ワールド"); // 8 code points
    assert(8 == a.size()); // 8 code units in UTF-32
 
    std::u16string b(u"ハロー・ワールド"); // 8 code points
    assert(8 == b.size()); // 8 code units in UTF-16
 
    std::string c("ハロー・ワールド"); // 8 code points
    assert(24 == c.size()); // 24 code units in UTF-8
 
    #if __cpp_lib_char8_t >= 201907L
    std::u8string d(u8"ハロー・ワールド"); // 8 code points
    assert(24 == d.size()); // 24 code units in UTF-8
    #endif
}

[编辑] 另请参见

检查字符串是否为空
(公共成员函数) [编辑]
返回最大字符数
(公共成员函数) [编辑]
返回字符数
(std::basic_string_view<CharT,Traits> 的公共成员函数) [编辑]