反射元类 练习

Posted 0b0s

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反射元类 练习相关的知识,希望对你有一定的参考价值。

‘‘‘
不会
3、在元类中控制自定义的类产生的对象相关的属性全部为隐藏属性
4、基于元类实现单例模式
‘‘‘
‘‘‘
1、在元类中控制把自定义类的数据属性都变成大写
class Father(type):
def __new__(cls,name,bases,dic):
update_dic={}
for k,v in dic.items():
update_dic.update({k.upper():v})
return type.__new__(cls,name,bases,update_dic)

class Son(metaclass=Father):
country=‘China‘
tag=‘Legend of the Dragon‘
def walk(self):
print(‘唐老鸭 is walking‘)

print(Son.__dict__)
‘‘‘
‘‘‘
2、在元类中控制自定义的类无需__init__方法
class Father(type):

def __call__(self, *args, **kwargs):
if args:
raise TypeError(‘must use keyword argument for key function‘)
obj = object.__new__(self)
for k,v in kwargs.items():
obj.__dict__[k.upper()]=v
return obj

class Son(metaclass=Father):
country=‘China‘
tag=‘Legend of the Dragon‘ #龙的传人

def walk(self):
print(‘唐老鸭 is walking‘)


p=Son(name=‘tank‘,age=18,sex=‘male‘)
print(p.__dict__)
‘‘‘

以上是关于反射元类 练习的主要内容,如果未能解决你的问题,请参考以下文章

Python第二十一课(反射/元类)

反射,元类

反射 元类

反射,元类

反射 动态导入 元类

反射与元类