命名空间
变体
操作

std::ctype<CharT>::narrow, do_narrow

来自 cppreference.com
< cpp‎ | locale‎ | ctype
 
 
 
 
定义在头文件 <locale>
public:
char narrow( CharT c, char dflt ) const;
(1)
public:

const CharT* narrow( const CharT* beg, const CharT* end,

                     char dflt, char* dst ) const;
(2)
protected:
virtual char do_narrow( CharT c, char dflt ) const;
(3)
protected:

virtual const CharT* do_narrow( const CharT* beg, const CharT* end,

                                char dflt, char* dst ) const;
(4)
1,2) 公共成员函数,调用最派生类的相应受保护的虚拟成员函数 do_narrow 重载。重载 (1) 调用 do_narrow(c, dflt),重载 (2) 调用 do_narrow(beg, end, dflt, dst).
3) 如果字符可以用单个字节表示,则将(可能是宽的)字符 c 转换为多字节表示形式(例如,UTF-8 编码中的 ASCII 字符是单个字节)。如果不存在此类转换,则返回 dflt.
4) 对于字符数组 [begend) 中的每个字符,将缩窄字符(或在缩窄失败时 dflt)写入 dst 指向的字符数组中的连续位置。

缩窄始终成功,并且对于 基本源字符集(直到 C++23)基本字符集(自 C++23 起) 中的所有字符始终是可逆的(通过调用 widen())。

如果缩窄成功,它会保留 is() 所知的全部字符分类类别。

  • 即,对于任何名为 ctype 类别的 ctcctype_base::maskm(除非 do_narrow 返回 dflt),表达式 is(m, c) || !ctc.is(m, do_narrow(c, dflt)) 始终为 true.

任何数字字符的缩窄都保证,如果将结果从字符文字 '0' 中减去,则差值将等于原始字符的数字值。

  • 即,对于任何数字字符 c,表达式 (do_narrow(c, dflt) - '0') 计算为字符的数字值。

内容

[编辑] 参数

c - 要转换的字符
dflt - 如果转换失败,要生成的默认值
beg - 指向要转换的字符数组中的第一个字符的指针
end - 要转换的字符数组的尾指针
dst - 指向要填充的字符数组的第一个元素的指针

[编辑] 返回值

1,3) 缩窄的字符或如果缩窄失败则为 dflt.
2,4) end

[编辑] 示例

#include <iostream>
#include <locale>
 
void try_narrow(const std::ctype<wchar_t>& f, wchar_t c)
{
    char n = f.narrow(c, 0);
    if (n)
        std::wcout << '\'' << c << "' narrowed to " << +(unsigned char)n << '\n';
    else
        std::wcout << '\'' << c << "' could not be narrowed\n";
}
 
int main()
{
    std::locale::global(std::locale("en_US.utf8"));
    std::wcout.imbue(std::locale());
    std::wcout << std::hex << std::showbase << "In US English UTF-8 locale:\n";
    auto& f = std::use_facet<std::ctype<wchar_t>>(std::locale());
    try_narrow(f, L'A');
    try_narrow(f, L'A');
    try_narrow(f, L'ě');
 
    std::locale::global(std::locale("cs_CZ.iso88592"));
    auto& f2 = std::use_facet<std::ctype<wchar_t>>(std::locale());
    std::wcout << "In Czech ISO-8859-2 locale:\n";
    try_narrow(f2, L'A');
    try_narrow(f2, L'A');
    try_narrow(f2, L'ě');
}

可能的输出

In US English UTF-8 locale:
'A' narrowed to 0x41
'A' could not be narrowed
'ě' could not be narrowed
In Czech ISO-8859-2 locale:
'A' narrowed to 0x41
'A' could not be narrowed
'ě' narrowed to 0xec

[编辑] 缺陷报告

以下更改行为的缺陷报告已追溯应用于以前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 126 C++98 1. 表示可逆性的代码为
do_widen(do_narrow(c), 0) == c
2. 表示类别保留的代码为
is(m, c) || !ctc.is(m, do_narrow(c), dflt)
已修正两者
LWG 153 C++98 narrow 始终调用重载 (4) 调用相应的重载

[编辑] 另请参见

调用 do_widen
(公共成员函数) [编辑]
缩窄字符
(std::basic_ios<CharT,Traits> 的公共成员函数) [编辑]
如果可能,将宽字符缩窄为单个字节的窄字符
(函数) [编辑]