首页 > 代码库 > python中定义class时self的理解

python中定义class时self的理解

很多人都对self的作用不理解,觉得多余,实际上self大有其用。

先给出一个实例:

1 >>> class a_class:
2     def func(self):
3         print(self)
4         print(self.__class__)
5 
6 >>> a= a_class()
7 >>> a.func
8 <bound method a_class.func of <__main__.a_class object at 0x0000000003414C18>>

其实7、8行的效果等同于如下:

1 >>> a_class.func(a)
2 <__main__.a_class object at 0x0000000003414C18>
3 <class __main__.a_class>
4 >>> 

明白了吧,a_class.func(a)等同于,a=a_class();a.func()

所以,self就是实例的本身,即self 就是 实例a,所以self就代表外界钏如一个参数,可以新建一个实例。

python中定义class时self的理解