gpt4 book ai didi

C++ std::ctype::widen() 的作用是什么?

转载 作者:可可西里 更新时间:2023-11-01 16:22:09 27 4
gpt4 key购买 nike

根据 C++ 标准(C++17 草案 (N4659) 的 §30.7.5.2.4),out << ch不会对 ch 执行扩大操作, 如果 chcharoutstd::ostream .

这是否意味着 std::ctype<char>::widen() (即 char -> char )是否由标准保证为基本源字符集中所有字符的恒等函数 ( widen(ch) == ch )?

如果是这样,这是否反过来意味着标准要求所有语言环境使用基本源字符集中相同的非宽(或多字节)字符编码?

如果不是,好像是out << 'x' ,对于文字的字符编码有特殊选择,可能无法在所有语言环境中工作,即使它在某些语言环境中工作。也就是说,可能无法选择字 rune 字编码,例如 out << 'x'同时适用于所有语言环境。

最佳答案

不,它只是说在这种情况下

template<class traits>
basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>& out, char c);

流和 <<运营商交易相同 char类型没有转换。

If c has type char and the character type of the stream is not char, then seq consists of out.widen(c); otherwise seq consists of c.

在所有其他情况下,语言环境用于有选择地转换角色,而对语言环境可能做什么没有限制。

关于C++ std::ctype<char>::widen() 的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44380123/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com