绑定方法与非绑定方法

绑定方法

特殊之处在于将调用者本身当做第一个参数自动传入

1、绑定给对象的方法:调用者是对象,自动传入的是对象

2、绑定给类的方法:调用者类,自动传入的是类

# 为类中某个函数加上装饰器@classmethod后,该函数就变成了类的绑定方法

# 配置文件settings.py的内容
IP='127.0.0.1'
PORT=3306

import settings

class Mysql:
    def __init__(self,ip,port):
        self.ip=ip
        self.port=port

    def func(self):
        print('%s:%s' %(self.ip,self.port))

    @classmethod # 将下面的函数装饰成绑定给类的方法
    def from_conf(cls):
        print(cls)
        return cls(settings.IP, settings.PORT)

# obj1=Mysql('1.1.1.1',3306)

obj2=Mysql.from_conf()
print(obj2.__dict__)
<class '__main__.Mysql'>
{'ip': '127.0.0.1', 'port': 3306}

非绑定方法-》静态方法:

没有绑定给任何人:调用者可以是类、对象,没有自动传参的效果

class Mysql:
    def __init__(self,ip,port):
        self.nid=self.create_id()
        self.ip=ip
        self.port=port

    @staticmethod # 将下述函数装饰成一个静态方法
    def create_id():
        import uuid
        return uuid.uuid4()

    @classmethod
    def f1(cls):
        pass

    def f2(self):
        pass


obj1=Mysql('1.1.1.1',3306)
# 类或对象来调用create_id发现都是普通函数,而非绑定到谁的方法
print(Mysql.create_id)
print(obj1.create_id)
<function Mysql.create_id at 0x00000000026AC4C0>
<function Mysql.create_id at 0x00000000026AC4C0>

总结绑定方法与非绑定方法的使用:若类中需要一个功能,该功能的实现代码中需要引用对象则将其定义成对象方法、需要引用类则将其定义成类方法、无需引用类或对象则将其定义成静态方法。

posted @ 2020-04-10 20:46  aksas  阅读(129)  评论(0编辑  收藏  举报