类中方法的两种调用方式
Posted xiangxiaolin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类中方法的两种调用方式相关的知识,希望对你有一定的参考价值。
class Foo(object): def func(self, name): print(name) # 第一种,通过实例对象调用func方法 foo = Foo() foo.func(‘allin‘) # 第二种,通过类名调用func方法 foo = Foo() Foo.func(foo, ‘allin‘) # 两种方法等价
以上是关于类中方法的两种调用方式的主要内容,如果未能解决你的问题,请参考以下文章