std::mbsinit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
int mbsinit( const std::mbstate_t* ps); |
||
。如果
ps
是不是一个空指针,mbsinit
的功能确定是否有针对性的std::mbstate_t对象描述了初始转换状态. 原文:
If
ps
is not a null pointer, the mbsinit
function determines whether the pointed-to std::mbstate_t object describes the initial conversion state. 目录 |
[编辑] 。注释。
。虽然初始化为零的std::mbstate_t始终代表初始转换状态,也有可能是其它值,也代表了初始转换状态的std::mbstate_t.
原文:
Although a zero-initialized std::mbstate_t always represents the initial conversion state, there may be other values of std::mbstate_t that also represent the initial conversion state.
[编辑] 。参数。
ps | - | pointer to the std::mbstate_t object to examine |
===。 返回值。===
。 0如果
ps
是不是一个空指针和,不reporesent的初始转换状态,非零值,否则.....原文:
0 if
ps
is not a null pointer and does not reporesent the initial conversion state, nonzero value otherwise.[编辑] 。为例。
#include <clocale> #include <string> #include <iostream> #include <cwchar> int main() { // allow mbrlen() to work with UTF-8 multibyte encoding std::setlocale(LC_ALL, "en_US.utf8"); // UTF-8 narrow multibyte encoding std::string str = u8"水"; // or u8"\u6c34" or "\xe6\xb0\xb4" std::mbstate_t mb = std::mbstate_t(); (void)std::mbrlen(&str[0], 1, &mb); if (!std::mbsinit(&mb)) { std::cout << "After processing the first 1 byte of " << str << " the conversion state is not initial\n"; } (void)std::mbrlen(&str[1], str.size()-1, &mb); if (std::mbsinit(&mb)) { std::cout << "After processing the remaining 2 bytes of " << str << ", the conversion state is initial conversion state\n"; } }
输出:
After processing the first 1 byte of 水 the conversion state is not initial After processing the remaining 2 bytes of 水, the conversion state is initial conversion state
[编辑] 。另请参阅。
迭代多字节字符串转换所需的状态信息 原文: conversion state information necessary to iterate multibyte character strings (类) | |
C documentation for mbsinit
|