为什么在python类中将Double Leading Underscore方法分配给Single Leading Underscore变量

时间:2019-12-10 15:13:00

标签: python

我在python类中看到以下模式

class xxx(object):

    def __some_method():
        pass

    _some_method = __some_method

为什么有人会使用这种将Double Leading Underscore方法分配给Single Leading Underscore变量的模式?

0 个答案:

没有答案