标签:module 基础 min ace 错误 blog tee 新手 pytho
镇场诗:
诚听如来语,顿舍世间名与利。愿做地藏徒,广演是经阎浮提。
愿尽吾所学,成就一良心博客。愿诸后来人,重现智慧清净体。
——————————————————————————————————————————
ex1:
code:
class MyClass : #属性,公有的 height=10 weight=20 #伪私有属性 __haha=30; test=MyClass() print(test.__haha)
result:
============= RESTART: C:\Users\Administrator\Desktop\myCode.py ============= Traceback (most recent call last): File "C:\Users\Administrator\Desktop\myCode.py", line 10, in <module> print(test.__haha) AttributeError: ‘MyClass‘ object has no attribute ‘__haha‘ >>>
ex2:
code:
class MyClass : #属性,公有的 height=10 weight=20 #伪私有属性,采用的是 名字替换。那么怎么访问呢? #实例._类名伪私有属性名 __haha=30; test=MyClass() print(test._MyClass__haha)
result:
============= RESTART: C:\Users\Administrator\Desktop\myCode.py ============= 30 >>>
——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。Python版本3.5,系统 Windows7。
Python是优秀的语言,值得努力学习。我是跟着小甲鱼视频教程学习的,推荐。
我是一个新手,所以如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取成就一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。
标签:module 基础 min ace 错误 blog tee 新手 pytho
原文地址:http://www.cnblogs.com/jinlingzi/p/6308770.html