Chinaunix
标题: 《笨办法学Python》(第三版)中的习题40的类和函数如何来理解? [打印本页]
作者: 274920831 时间: 2017-12-26 22:13
标题: 《笨办法学Python》(第三版)中的习题40的类和函数如何来理解?
本帖最后由 274920831 于 2017-12-26 22:14 编辑
class Song(object):
def __init__(self,lyrics):
self.lyrics=lyrics
def sing_me_a_song(self):
for line in self.lyrics:
print line
happy_bday=Song(["Happy birthday to you","I don't want to get sued","So I'll stop right there"])
bulls_on_parads=Song(["They rally around the family","with pockets full of shells"])
happy_bday.sing_me_a_song()
bulls_on_parads.sing_me_a_song()
我想问一下,对于这一段应该如何来理解:
def __init__(self,lyrics):
self.lyrics=lyrics
我的理解是首先定义一个_init_的函数,而它带的两个参数是(self,lyrics)
self.lyrics=lyrics,这个应该如何理解,参数.参数=参数 ?
而这一段:
def sing_me_a_song(self):
这里面又带着参数self的作用是什么?
有比较容易懂的解释吗?
作者: neodreamerus 时间: 2018-01-05 15:25
调用__init__的时候,instance已经创建了,第一个参数会绑定到instance,所以这里的意思是
instance.attribute = value
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) |
Powered by Discuz! X3.2 |