首页 > 编程 > Python > 正文

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

2019-11-25 18:41:06
字体:
来源:转载
供稿:网友
复制代码 代码如下:

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)()
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表