暂无 |

类 class

试图访问未定义的实例的属性会导致AttributeError.(属性错误)。这也适用于调用一个未定义的方法。

例如:

class Rectangle: 
  def __init__(self, width, height):
    self.width = width
    self.height = height

rect = Rectangle(7, 8)
print(rect.color)

结果:

>>>
AttributeError: 'Rectangle' object has no attribute 'color'
>>>

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论