python子类增加属性_Python:如何在基类的方法中获取子类的新属性名称?

I want to put all attribute names in SubClass to a list, I want to do that in Base class. How can I do that?

My method now is:

class Base():

def __init__(self):

# print SubClass' new attribues' names ('aa' and 'bb' for example)

for attr in dir(self):

if not hasattr(Base, attr):

print attr

class SubClass(Base):

aa = ''

bb = ''

is there a better way to do that ?

Thanks for any help.

解决方案

As the @JohnZwinck suggested in a comment, you're almost certainly making a design mistake if you need to do this. Without more info, however, we can't diagnose the problem.

This seems the simplest way to do what you want:

class Base(object):

cc = '' # this won't get printed

def __init__(self):

# print SubClass' new attribues' names ('aa' and 'bb' for example)

print set(dir(self.__class__)) - set(dir(Base))

class SubClass(Base):

aa = ''

bb = ''

foo = SubClass()

# set(['aa', 'bb'])

The reason you need self.__class__ instead of self to test for new attributes is this:

class Base(object):

cc = ''

def __init__(self):

print set(dir(self)) - set(dir(Base))

# print SubClass' new attribues' names ('aa' and 'bb' for example)

class SubClass(Base):

def __init__(self):

self.dd = ''

super(SubClass, self).__init__()

aa = ''

bb = ''

foo = SubClass()

# set(['aa', 'dd', 'bb'])

If you want the difference between the classes as defined, you need to use __class__. If you don't, you'll get different results depending on when you check for new attributes.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值