命名空间
变体
操作

std::text_encoding::name

来自 cppreference.cn
< cpp‎ | text‎ | text encoding
constexpr const char* name() const noexcept;
(since C++26)

返回 *this 的主名称。等价于 return name_;

在范围 [name()name() + std::strlen(name()) + 1) 之外访问 name_ 的元素是未定义行为。

[编辑] 参数

(无)

[编辑] 返回值

由空终止字节字符串表示的主名称 name_

[编辑] 示例