51Testing软件测试论坛

标题: python中的_和__ [打印本页]

作者: 测试积点老人    时间: 2018-12-10 14:31
标题: python中的_和__
本帖最后由 测试积点老人 于 2018-12-10 14:32 编辑

Python中 _ 和 __ 的含义_ 的含义
在python的类中,没有真正的私有化,不管是方法还是属性,为了编程的需要,约定加了下划线 _ 的属性和方法不属于API,不应该在类的外面访问,也不会被from M import * 导入。下面的代码演示加了_ 的方法,以及在类外面对其的可访问性。

  1. class A:
  2.     def _method(self):
  3.         print('约定为不在类的外面直接调用这个方法,但是也可以调用')
  4.     def method(self):
  5.         return self._method()     
  6. a = A()
复制代码

在类A中定义了一个_method方法,按照约定是不能在类外面直接调用它的,为了可以在外面使用_method方法,又定义了method方法,method方法调用_method方法。请看代码演示:

  1. In [24]: a.method()
  2. 不建议在类的外面直接调用这个方法,但是也可以调用
复制代码

但是我们应该记住的是加了_的方法也可以在类外面调用:

  1. In [25]: a._method()
  2. 不建议在类的外面直接调用这个方法,但是也可以调用
复制代码

__ 的含义

python中的__和一项称为name mangling的技术有关,name mangling (又叫name decoration命名修饰).在很多现代编程语言中,这一技术用来解决需要唯一名称而引起的问题,比如命名冲突/重载等.
代码演示如下:

  1. class A:

  2.     def __method(self):
  3.         print('This is a method from class A')

  4.     def method(self):
  5.         return self.__method()

  6. class B(A):
  7.     def __method(self):
  8.         print('This is a method from calss B')
复制代码

在类A中,__method方法其实由于name mangling技术的原因,变成了_A__method,所以在A中method方法返回的是_A__method,B作为A的子类,只重写了__method方法,并没有重写method方法,所以调用B中的method方法时,调用的还是_A__method方法:

  1. In [27]: a = A()

  2. In [28]: b = B()

  3. In [29]: a.method()
  4. This is a method from class A

  5. In [30]: b.method()
  6. This is a method from class A
复制代码

在A中没有__method方法,有的只是_A__method方法,也可以在外面直接调用,所以python中没有真正的私有化:

  1. In [35]: a.__method()
  2. ---------------------------------------------------------------------------
  3. AttributeError                            Traceback (most recent call last)
  4. <ipython-input-35-b8e0b1bf4d09> in <module>()
  5. ----> 1 a.__method()

  6. AttributeError: 'A' object has no attribute '__method'

  7. In [36]: a._A__method()
  8. This is a method from class A
复制代码

在B中重写method方法:

  1. class B(A):
  2.     def __method(self):
  3.         print('This is a method from calss B')

  4.     def method(self):
  5.         return self.__method()
复制代码

现在B中的method方法会调用_B__method方法:

  1. In [32]: b = B()

  2. In [33]: b.method()
  3. This is a method from calss B
复制代码









欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2