首页 热点资讯 义务教育 高等教育 出国留学 考研考公

python对象和实例化的区别

发布网友 发布时间:2022-04-24 17:35

我来回答

1个回答

热心网友 时间:2022-04-29 14:24

对类实例化的结果就是产生一个该类的对象
实例化是action
对象是value
class MyException(Exception):
pass
class ValidationError(Exception):
def __init__(self, message, errors):
# Call the base class constructor with the parameters it needs
super(ValidationError, self).__init__(message)
# Now for your custom code...
self.errors = errors

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com