24

Python 的内置coerce函数有哪些常见用途?如果我不知道文档type中的数值,我可以看到应用它,但是否存在其他常见用法?我猜想在执行算术计算时也会调用它,例如. 它是一个内置函数,所以大概它有一些潜在的常见用法?coerce() x = 1.0 +2

4

2 回答 2

15

它是早期python的遗留物,它基本上使一个数字元组成为相同的基础数字类型,例如

>>> type(10)
<type 'int'>
>>> type(10.0101010)
<type 'float'>
>>> nums = coerce(10, 10.001010)
>>> type(nums[0])
<type 'float'>
>>> type(nums[1])
<type 'float'>

它还允许对象像旧类中的数字一样
(这里使用它的一个不好的例子是......)

>>> class bad:
...     """ Dont do this, even if coerce was a good idea this simply
...         makes itself int ignoring type of other ! """
...     def __init__(self, s):
...             self.s = s
...     def __coerce__(self, other):
...             return (other, int(self.s))
... 
>>> coerce(10, bad("102"))
(102, 10)
于 2013-01-24T07:48:30.043 回答
2

Python核心编程说:

函数 coerce() 提供程序员不依赖 Python 解释器,而是自定义两种数值类型的转换。”

例如

>>> coerce(1, 2)
(1, 2)
>>>
>>> coerce(1.3, 134L)
(1.3, 134.0)
>>>
>>> coerce(1, 134L)
(1L, 134L)
>>>
>>> coerce(1j, 134L)
(1j, (134+0j))
>>>
>>> coerce(1.23-41j, 134L)
((1.23-41j), (134+0j))
于 2014-01-16T04:27:57.507 回答