通俗易懂之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 面向对象中的方法及属性的主要内容,如果未能解决你的问题,请参考以下文章