码迷,mamicode.com
首页 > 编程语言 > 详细

python进阶三(面向对象编程基础)【3-4 python中定义类方法】

时间:2019-10-05 12:39:50      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:print   引用   属性   class   实例变量   desc   obj   regular   变量   

python中定义类方法

和属性类似,方法也分实例方法和类方法

在class中定义的全部是实例方法,实例方法第一个参数 self 是实例本身。

要在class中定义类方法,需要这么写:

 1 class Person(object):
 2     count = 0
 3     @classmethod
 4     def how_many(cls):
 5         return cls.count
 6     def __init__(self, name):
 7         self.name = name
 8         Person.count = Person.count + 1
 9 
10 print Person.how_many()
11 p1 = Person(Bob)
12 print Person.how_many()

通过标记一个 @classmethod,该方法将绑定到 Person 类上,而非类的实例。类方法的第一个参数将传入类本身,通常将参数名命名为 cls,上面的 cls.count 实际上相当于 Person.count。

因为是在类上调用,而非实例上调用,因此类方法无法获得任何实例变量,只能获得类的引用。

任务

如果将类属性 count 改为私有属性__count,则外部无法读取__score,但可以通过一个类方法获取,请编写类方法获得__count值。

 1 class Person(object):
 2 
 3     __count = 0
 4 
 5     @classmethod
 6     def how_many(cls):
 7         return cls.__count
 8     def __init__(self, name):
 9         self.name = name
10         Person.__count = Person.__count + 1
11 
12 print Person.how_many()
13 
14 p1 = Person(Bob)
15 
16 print Person.how_many()

 

python进阶三(面向对象编程基础)【3-4 python中定义类方法】

标签:print   引用   属性   class   实例变量   desc   obj   regular   变量   

原文地址:https://www.cnblogs.com/ucasljq/p/11624216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!