通俗易懂之Python 面向对象中的方法及属性

Posted Cou1d

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通俗易懂之Python 面向对象中的方法及属性相关的知识,希望对你有一定的参考价值。

class A():

def walk(self): #实例方法,a = A()--a.walk()
    print(‘walking ‘)

@staticmethod #静态方法, A().sta()
def sta():
    print(‘static func‘)


@classmethod #类方法, A().classfunc()
def classfunc(self):
    print(‘class method‘)


@property #静态属性, a = A()--a.pro
def pro(self):
    return ‘property func‘


def __privatefunc(self):#私有方法,只有内部访问
    print(‘私有方法‘)

def forprivatefunc(self):  #内部访问私有方法
    return self.__privatefunc()

以上是关于通俗易懂之Python 面向对象中的方法及属性的主要内容,如果未能解决你的问题,请参考以下文章

对Spring中的IOC与AOP简单理解(简单的理解,通俗易懂)

Python面向对象之访问控制

python面向对象之命名空间及组合

Python 之 面向对象

python之面向对象

通俗易懂了解Vue双向绑定原理及实现