码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-08-02 22:58:27      阅读:1486      评论:0      收藏:0      [点我收藏+]

标签:only   调用   需要   pre   return   none   turn   attr   col   

如果要使用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的区别

标签:only   调用   需要   pre   return   none   turn   attr   col   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!