命名空间
变体
操作

std::wctob

来自 cppreference.com
< cpp‎ | string‎ | multibyte
定义在头文件 <cwchar>
int wctob( std::wint_t c );

如果宽字符 c 在初始移位状态下的多字节字符等效值为单个字节,则将其缩小。

这通常适用于 ASCII 字符集中的字符,因为大多数多字节编码(例如 UTF-8)使用单个字节来编码这些字符。

内容

[编辑] 参数

c - 要缩小的宽字符

[编辑] 返回值

如果 c 在初始移位状态下不代表长度为 1 的多字节字符,则返回 EOF

否则,返回 c 的单字节表示形式作为 unsigned char 转换为 int

[编辑] 示例

#include <clocale>
#include <cwchar>
#include <iostream>
 
void try_narrowing(wchar_t c)
{
    int cn = std::wctob(c);
    if (cn != EOF)
        std::cout << '\'' << int(c) << "' narrowed to " << +cn << '\n';
    else
        std::cout << '\'' << int(c) << "' could not be narrowed\n";
}
 
int main()
{
    std::setlocale(LC_ALL, "th_TH.utf8");
    std::cout << std::hex << std::showbase << "In Thai UTF-8 locale:\n";
    try_narrowing(L'a');
    try_narrowing(L'๛');
 
    std::setlocale(LC_ALL, "th_TH.tis620");
    std::cout << "In Thai TIS-620 locale:\n";
    try_narrowing(L'a');
    try_narrowing(L'๛');
}

输出

In Thai UTF-8 locale:
'0x61' narrowed to 0x61
'0xe5b' could not be narrowed
In Thai TIS-620 locale:
'0x61' narrowed to 0x61
'0xe5b' narrowed to 0xfb

[编辑] 参见

如果可能,将单个字节的窄字符扩展为宽字符
(函数) [编辑]
缩小字符
(std::basic_ios<CharT,Traits> 的公共成员函数) [编辑]
调用 do_narrow
(std::ctype<CharT> 的公共成员函数) [编辑]
C 文档 针对 wctob