C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- std::basic_string
- std::basic_string_view
- 空终止字节字符串
- 空终止多字节字符串
- std::mbsinit
- std::mbtowc
- std::mbstowcs
- std::btowc
- std::c8rtomb
- std::mbrtoc8
- std::mbrtowc
- std::mbsrtowcs
- std::mbrtoc16
- std::mbrtoc32
- std::mblen
- std::wctomb
- std::wcstombs
- std::wctob
- std::wcrtomb
- std::wcsrtombs
- std::c16rtomb
- std::c32rtomb
- std::mbrlen
- std::mbstate_t
- 空终止宽字符串
- std::char_traits
- 注释
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::mbrlen
定义于头文件 <cwchar>
|
||
std::size_t mbrlen( const char* s, std::size_t n, std::mbstate_t* ps); |
||
给定当前转换状态 s
,确定首字节为 ps
所指向的多字节字符的剩余字节大小。
此函数等价于对于某 std::mbstate_t 类型的隐藏对象 internal
的调用 std::mbrtowc(nullptr, s, n, ps?ps:&internal) ,除了只求值表达式 ps
一次。
参数
s | - | 指向多字节字符串元素的指针 |
n | - | s 中能检验的字节数限制 |
ps | - | 指向保有转换状态的对象的指针 |
返回值
若下 n
个或更少字节完成空字符则为 0 。
完成合法多字节字符的字节数( 1 与 n 之间)。
若发生编码错误则为 (size_t)-1 。
若下 n
个字节为可能合法,而在检验全部 n
个字节后仍不完整的多字节字符的一部分,则为 (size_t)-2 。
示例
运行此代码
#include <clocale> #include <string> #include <iostream> #include <cwchar> int main() { // 允许 mbrlen() 以 UTF-8 多字节编码工作 std::setlocale(LC_ALL, "en_US.utf8"); // UTF-8 窄多字节编码 std::string str = u8"水"; // 或 u8"\u6c34" 或 "\xe6\xb0\xb4" std::mbstate_t mb = std::mbstate_t(); int len1 = std::mbrlen(&str[0], 1, &mb); if(len1 == -2) { std::cout << "The first 1 byte of " << str << " is an incomplete multibyte char (mbrlen returns -2)\n"; } int len2 = std::mbrlen(&str[1], str.size()-1, &mb); std::cout << "The remaining " << str.size()-1 << " bytes of " << str << " hold " << len2 << " bytes of the multibyte character\n"; std::cout << "Attempting to call mbrlen() in the middle of " << str << " while in initial shift state returns " << (int)mbrlen(&str[1], str.size(), &mb) << '\n'; }
输出:
The first 1 byte of 水 is an incomplete multibyte char (mbrlen returns -2) The remaining 2 bytes of 水 hold 2 bytes of the multibyte character Attempting to call mbrlen() in the middle of 水 while in initial shift state returns -1
参阅
给定状态,转换下个多字节字符为宽字符 (函数) | |
返回下一个多字节字符中的字节数 (函数) | |
[虚] |
计算转换成给定的 internT 缓冲区会消耗的 externT 字符串长度 ( std::codecvt<InternT,ExternT,State> 的虚受保护成员函数) |