首页 > 其他 > 详细

面向对象中的@classonlymethod 与 @classmethod的区别

时间:2018-08-02 21:27:52      阅读:297      评论:0      收藏:0      [点我收藏+]

如果要使用classonlymethod ,则需要先定义好一个classonlymethod 类。

首先我们需要明白无论是classonlymethod还是classmethod,本质都是一个类,而classonlymethod继承了classmethod。

classonlymethodz作用:只能被类调用,不能被实例对象调用。

class classonlymethod(classmethod):  # 继承classmethod
    def __get__(self, instance, cls=None): # 
        if instance is not None:
            raise AttributeError("This method is available only on the class, not on instances.")
        return super(classonlymethod, self).__get__(instance, cls)

 

his method is available only on the class, not on instances.

面向对象中的@classonlymethod 与 @classmethod的区别

原文:https://www.cnblogs.com/Dream-huang/p/9409678.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!