当前位置:主页 > 软件编程 > Python代码 >

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

时间:2020-10-02 10:19:50 | 栏目:Python代码 | 点击:

复制代码 代码如下:

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)()

您可能感兴趣的文章:

相关文章