码迷,mamicode.com
首页 > 其他好文 > 详细

私有方法

时间:2018-06-18 14:00:57      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:sel   私有方法   print   one   dog   公有   self   class   money   

1.私有方法
class Dog:

#私有方法
def __send_msg(self):
print("------正在发送短信------")

#公有方法
def send_msg(self, new_money):
if new_money>10000:
self.__send_msg()
else:
print("余额不足,请先充值 再发送短信")

dog = Dog()
dog.send_msg(100)

私有方法

标签:sel   私有方法   print   one   dog   公有   self   class   money   

原文地址:https://www.cnblogs.com/loser1949/p/9194951.html

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