- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
来自 Python 文档:http://docs.python.org/library/stdtypes.html#comparisons
Implementation note: Objects of different types except numbers are ordered by their type names; objects of the same types that don’t support proper comparison are ordered by their address.
有什么理由选择这样做而不是引发异常?
最佳答案
从您引用的那一行开始大约有四行:
Objects of different types, except different numeric types and different string types, never compare equal; such objects are ordered consistently but arbitrarily (so that sorting a heterogeneous array yields a consistent result).
您不想在对不同类型的对象列表进行排序时引发异常。
关于python - 为什么不同类型的 Python 对象按类型名称排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/649191/
假设我有一个 union u,其中有两个相同类型(例如 int)的成员 a 和 b。 union u{ int a,b; char c; }; 如果我写入a,按值将它传递给函数,函数从
我是一名优秀的程序员,十分优秀!