当前位置:Gxlcms > Python > python创建只读属性对象的方法(ReadOnlyObject)

python创建只读属性对象的方法(ReadOnlyObject)

时间:2021-07-01 10:21:17 帮助过:109人阅读

代码如下:


def ReadOnlyObject(**args):
dictBI = {}
args_n = []
for name, val in args.items():
dictBI[name] = val
args_n.append(name)
dictBI['__slots__'] = args_n
return type('ReadOnlyObject', (object,), dictBI)()

人气教程排行