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

Python 私有方法

时间:2018-08-26 11:56:06      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:私有   self   定义   etag   span   elf   nbsp   方法   print   

#私有方法的定义与调用

class Cat:
        def __init__(self):
                self.name = ""
                self.age = 0

        def __changeage(self,_age):
                self.age = _age

        def setage(self,_age):
                if _age < 0:
                        #私有方法的调用
                        self.__changeage(10)
                else:
                        self.__changeage(_age)
        def __str__(self):
                return "age is %d ."%(self.age)

tom = Cat()

tom.setage(11)

#tom.__changeage(13)

print(tom)

tom.setage(-10)

print(tom)

 

Python 私有方法

标签:私有   self   定义   etag   span   elf   nbsp   方法   print   

原文地址:https://www.cnblogs.com/zhanggaofeng/p/9536463.html

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