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

python类访问限制

时间:2017-04-16 12:20:49      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:span   word   self   keyword   ima   img   .com   student   python类   

 

1、类的访问限制:要让内部属性不被外部访问,可以把在属性的名称前加上两个下划线__,在Python中,实例的变量名如果以__开头,就变成了一个私有变量(private),只有内部可以访问,外部不能访问如std.__name访问报错。但可以通过std._Student__name访问

class Student():
  def __init__(self,name,score):
    self.__name = name
    self.__score = score
  def print_score(self):
    print ‘%s: %s‘ % (self.__name, self.__score)

std = Student(‘vickey‘,99)
print ‘111‘,std.Student__name
print ‘222‘,std.__name

技术分享

 

 

python类访问限制

标签:span   word   self   keyword   ima   img   .com   student   python类   

原文地址:http://www.cnblogs.com/vickey-wu/p/6718217.html

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