찾다

 >  Q&A  >  본문

python如何实现php的 __call函数实现的功能?

php的__call函数方法,用在类里可以捕获所有未定义方法的调用。请问在python中有什么方法能实现同类功能。多谢。

黄舟黄舟2828일 전658

모든 응답(1)나는 대답할 것이다

  • ringa_lee

    ringa_lee2017-04-10 13:14:30

    class Foo(object):
        def __getattr__(self, key):
            return lambda:'bar'
    
    f = Foo()
    print f.bar()

    회신하다
    0
  • 취소회신하다