我知道不再推荐旧式 Python 类,尤其是在 Python 3 删除了它们之后。但是,我仍然想了解这里发生了什么:
class MyClass:
pass
my_instance = MyClass()
str(my_instance)
此代码段打印以下内容:
'<位于 0x108ec4290 的主.MyClass 实例>'
所以,我没有任何显式继承,也没有重载str方法。但是,这不会为所谓的缺失方法引发异常。为什么?
我知道旧式类具有“实例”和“类型”的概念,而新式类旨在统一这些概念。Python 是否会在我的实例隐式连接到的“实例”类型上查找并调用str方法?
这里有一些线索:
dir(my_instance) - 返回:
['__doc__', '__module__']
type(my_instance) - 返回:
<type 'instance'>
dir(type(my_instance)) - 返回:
['__abs__', '__add__', '__and__', '__call__', '__class__', '__cmp__', '__coerce__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__div__', '__divmod__', '__doc__', '__eq__', '__float__', '__floordiv__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__hex__', '__iadd__', '__iand__', '__idiv__', '__ifloordiv__', '__ilshift__', '__imod__', '__imul__', '__index__', '__init__', '__int__', '__invert__', '__ior__', '__ipow__', '__irshift__', '__isub__', '__iter__', '__itruediv__', '__ixor__', '__le__', '__len__', '__long__', '__lshift__', '__lt__', '__mod__', '__mul__', '__ne__', '__neg__', '__new__', '__nonzero__', '__oct__', '__or__', '__pos__', '__pow__', '__radd__', '__rand__', '__rdiv__', '__rdivmod__', '__reduce__', '__reduce_ex__', '__repr__', '__rfloordiv__', '__rlshift__', '__rmod__', '__rmul__', '__ror__', '__rpow__', '__rrshift__', '__rshift__', '__rsub__', '__rtruediv__', '__rxor__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__sub__', '__subclasshook__', '__truediv__', '__xor__', 'next']
谁能准确解释旧式类中的类和类型之间的关系以及这里发生了什么?