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

绑定方法

时间:2018-08-22 21:51:21      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:nbsp   pre   函数   ati   方法   strong   str   _id   from   

 一: 绑定方法:绑定给谁就应该由谁来调用,谁来调用就会将谁当做第一个参数传入
1. 绑定给对象的方法: 类中定义的函数默认就是绑定给对象的
2. 绑定给类的方法: 为类中定义的函数加上一个装饰器classmethod


二: 非绑定方法: 既不与类绑定,又不与对象绑定,意味着对象和类都可以来调用,无论谁来调用都是一个普通的函数,没有自动传值的效果

import settings

class MySql:
def __init__(self, ip, port):
self.id = self.create_id()
self.ip = ip
self.port = port

def tell_info(self):
print(‘<id:%s ip:%s port:%s>‘ % (self.id, self.ip, self.port))

@classmethod
def from_conf(cls):
return cls(settings.IP, settings.PORT)

@staticmethod
def create_id():
import uuid
return uuid.uuid4()



# obj1=MySql(‘1.1.1.1‘,3306)
# obj1.tell_info()
obj2 = MySql.from_conf()
obj2.tell_info()
 

绑定方法

标签:nbsp   pre   函数   ati   方法   strong   str   _id   from   

原文地址:https://www.cnblogs.com/zhangpang/p/9520329.html

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