通过 bool 进行 char 往返转换会发生什么?
C++ 语言定义对于将 char 转换为 bool 然后再次转换回 char 有何承诺?
char original = 255;
bool next = original;
char final = next;
另外,在这种情况下,除了语言保证之外,大多数编译器还会做什么?
What does the C++ language definition promise about casting a char to bool then back to char again?
char original = 255;
bool next = original;
char final = next;
Also, what do most compilers do in this case beyond what the language guarantees?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将给出零或一的值,具体取决于原始值是零还是非零。
转换为
bool
会得到true
或false
值:转换回
char
会将false
转换为 0,将true
转换为 1:This will give a value of zero or one, depending on whether the original value was zero or non-zero.
Converting to
bool
gives a value oftrue
orfalse
:Converting back to
char
convertsfalse
to zero, andtrue
to one:整数值转换为
bool
会产生true
或false
(4.12),而bool
会转换为整数值结果在1
或0
(4.5(6)) 中。请参阅第 4 章(标准转换)。Integral values converted to
bool
result in eithertrue
orfalse
(4.12), andbool
converted to integral values results in either1
or0
(4.5(6)). See Chapter 4 (Standard Conversions).转换为 bool 时,零和 null 会转换为 false,而其他所有内容都会转换为 true。当从 bool 转换时, false 转换为 0,true 转换为 1。
When converting to bool zero and null are converted to false, and everything else is converted to true. When converting from bool false is converted to zero and true is converted to one.