码迷,mamicode.com
首页 > 其他好文 > 详细

getattr,setattr

时间:2014-12-10 21:06:21      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   on   div   log   

#!/usr/bin/env python
# !-*-coding:utf-8-*-


class Setting():
    name = "asdfa"
    age = "18"
    def __init__(self):
        pass

class MyClass():
    def __init__(self, wrapped):
        self._wrapped = wrapped

    def __getattr__(self, name):
        try:
            return getattr(self._wrapped, name)
        except Exception, e:
            return None

    def setup(self, setting):
        for i in setting:
            try:
                getattr(self._wrapped, i)
                setattr(self._wrapped, i, setting[i])
            except:
                return None

s =Setting()
c = MyClass(s)
print c.name
setting = {"name":"小米" ,"age" :"20"}
c.setup(setting)

print c.name
print c.age

 

getattr,setattr

标签:style   blog   io   color   sp   for   on   div   log   

原文地址:http://www.cnblogs.com/canbefree/p/4156253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!