类的高级函数(双下横线)
__str__
介绍
- 如果定义了该函数, 当
print当前实例化对象的时候, 会返回改函数的return信息
用法
def __str__(self):
return str_type
参数
返回值
__gatattr__
介绍
- 当调用的属性或方法不存在时,会返回该方法定义的信息
用法
def __gatattr__(self, key):
print(something...)
参数
返回值
代码片段1
class Test(object):
def __str__(self):
return 'this is a test class'
def __getattr__(self, key):
return '这个key:{}并不存在'.format(key)
t = Test()
print(t)
print(t.a)
print(t.b)
__setattr__
功能
用法
def __settattr__(self, key, value):
self.__dict__[key] = value
参数
key 当前的属性名
value 当前的参数对应的值
返回值
__call__
功能
用法
def __call__(self, *args, **kwargs):
print('call will start')
参数
返回值
代码片段2
class Test(object):
def __str__(self):
return 'this is a test class'
def __getattr__(self, key):
return '这个key:{}并不存在'.format(key)
def __setattr__(self, key, value):
self.__dict__[key] = value
print(self.__dict__)
def __call__(self, a):
print('call func will start')
print(a)
t = Test()
print(t)
print(t.a)
print(t.b)
t.name = '小慕'
print(t.name)
t('dewei')
class Test2(object):
def __init__(self, attr=''):
self.__attr = attr
def __call__(self, name):
return name
def __getattr__(self, key):
if self.__attr:
key = '{}.{}'.format(self.__attr, key)
else:
key = key
print(key)
return Test2(key)
t2 = Test2()
name = t2.a.b.c('dewei')
print(name)
result = t2.name.age.sex('ok')
print(result)