作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经读过 this但我想在参数中继承类的方法。
例子:
class TypeOfGame1(object):
def get_max_players(self):
return 2
class TypeOfGame2(object):
def get_max_players(self):
return 30
class Game(object):
def __init__(self, game_cls):
self.game = game_cls()
然后从上面的代码我怎么能做这样的事情:
a = Game(TypeOfGame1)
a.get_max_players() # should return 2
a = Game(TypeOfGame2)
a.get_max_players() # should return 30
最佳答案
如果我理解正确的话,使用 __getattr__
来代理你的类怎么样?
n [2]: class Game(object):
...: def __init__(self, game_cls):
...: self.game = game_cls()
...: def __getattr__(self, other):
...: return getattr(self.game, other)
...:
In [7]: g = Game(TypeOfGame1)
In [8]: g.get_max_players()
Out[8]: 2
In [11]: g = Game(TypeOfGame2)
In [12]: g.get_max_players()
Out[12]: 30
关于python - 如何将类作为参数传递并继承方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36312615/
我是一名优秀的程序员,十分优秀!