gpt4 book ai didi

python - 为什么 bool 是 int 的子类?

转载 作者:IT老高 更新时间:2023-10-28 21:32:04 28 4
gpt4 key购买 nike

当通过 python-memcached 将 bool 存储在 memcached 中时,我注意到它以整数形式返回。检查库的代码告诉我有一个地方检查 isinstance(val, int) 以将值标记为整数。

所以我在 python shell 中对其进行了测试,并注意到以下内容:

>>> isinstance(True, int)
True
>>> issubclass(bool, int)
True

但是为什么 boolint 的子类呢?

这是有道理的,因为 boolean 值基本上是一个 int,它可以只取两个值,但它需要的操作/空间比实际整数少得多(没有算术,只有一位存储空间)....

最佳答案

来自 http://www.peterbe.com/plog/bool-is-int 的评论

It is perfectly logical, if you were around when the bool type was added to python (sometime around 2.2 or 2.3).

Prior to introduction of an actual bool type, 0 and 1 were the official representation for truth value, similar to C89. To avoid unnecessarily breaking non-ideal but working code, the new bool type needed to work just like 0 and 1. This goes beyond merely truth value, but all integral operations. No one would recommend using a boolean result in a numeric context, nor would most people recommend testing equality to determine truth value, no one wanted to find out the hard way just how much existing code is that way. Thus the decision to make True and False masquerade as 1 and 0, respectively. This is merely a historical artifact of the linguistic evolution.

感谢 dman13 的精彩解释。

关于python - 为什么 bool 是 int 的子类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8169001/

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