鱼C论坛

 找回密码
 立即注册
查看: 1769|回复: 0

[技术交流] 《零基础入门学习python》第37讲笔记

[复制链接]
发表于 2017-7-26 11:42:08 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
1.self  是一种绑定方法
本人萌新一枚,self详细讲解请参考http://python.jobbole.com/81921/

2.魔法方法之一:"__init__"(左右两条下滑线),也是一种构造方法,在创建实例对象是会自动调用
>>> class Ball:
                        def __init__(self,name):
                                self.name = name

                        def getName(self):
                                print('I am %s '%self.name)

                
>>> a = Ball('球A')

>>> a.getName()
I am 球A 

>>> b = Ball()
Traceback (most recent call last):
  File "<pyshell#28>", line 1, in <module>
    b = Ball()
TypeError: __init__() missing 1 required positional argument: 'name'

3.python中用"__+变量名"(双下划线)的形式隐藏变量
>>> class Person():
                        __name = '小甲鱼'

                        def getName(self):
                                return self.__name

        
>>> p = Person()

#如下,无法访问__name
>>> p.__name
Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    p.__name
AttributeError: 'Person' object has no attribute '__name'

#通过类对象中的函数访问
>>> p.getName()
'小甲鱼'

#通过"_类名__变量名"的方法访问
>>> p._Person__name
'小甲鱼'

评分

参与人数 1鱼币 +4 收起 理由
小甲鱼 + 4

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 16:27

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表