'isinstance' 在声明 'k' 对象时采用什么参数?
What argument 'isinstance' takes on declaring 'k' object?
class Point:
def __init__(self, x_or_obj = 0, y = 0):
if isinstance(x_or_obj, Point):
self.x = x_or_obj.x
self.y = x_or_obj.y
else:
self.x = x_or_obj
self.y = y
m = Point(1,2)
k = Point(m)
所以我很难理解为什么 isinstance
在这段代码中评估 True
。我认为 int
正在检查 class
,这对我来说毫无意义。
正在查看this article about isinstance
:
The isinstance() function returns True if the specified object is of the specified type, otherwise False.
在m
的定义中:
m = Point(1,2)
您将 1
作为 x_or_obj
的值传递。 1
是一个整数,而不是 Point
,因此它的计算结果为 False
。
然而,在k
的定义中:
k = Point(m)
您将 m
作为 x_or_obj
的值传递。您之前将 m
定义为类型 Point
,因此 isinstance
的计算结果为 True。
class Point:
def __init__(self, x_or_obj = 0, y = 0):
if isinstance(x_or_obj, Point):
self.x = x_or_obj.x
self.y = x_or_obj.y
else:
self.x = x_or_obj
self.y = y
m = Point(1,2)
k = Point(m)
所以我很难理解为什么 isinstance
在这段代码中评估 True
。我认为 int
正在检查 class
,这对我来说毫无意义。
正在查看this article about isinstance
:
The isinstance() function returns True if the specified object is of the specified type, otherwise False.
在m
的定义中:
m = Point(1,2)
您将 1
作为 x_or_obj
的值传递。 1
是一个整数,而不是 Point
,因此它的计算结果为 False
。
然而,在k
的定义中:
k = Point(m)
您将 m
作为 x_or_obj
的值传递。您之前将 m
定义为类型 Point
,因此 isinstance
的计算结果为 True。