python 定义类时,内部方法的互相调用

Posted kekeoutlook

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 定义类时,内部方法的互相调用相关的知识,希望对你有一定的参考价值。

 

class MyClass:
    def __init__(self):
        pass
    def func1(self):
        # do something
        print(‘a‘)   #for example      
        self.common_func()
     def func2(self):
        # do something
        self.common_func()
         
     def common_func(self):
         pass

  

以上是关于python 定义类时,内部方法的互相调用的主要内容,如果未能解决你的问题,请参考以下文章

python 类方法的互相调用及self的含义

java内部类的匿名内部类

vue.js methods中的方法互相调用时变量的作用域是怎样的

从片段内部调用活动方法[重复]

python(18):类(2)

测试类时,使用 Junit 和 Mockito 检查方法内部的工作