class Foo:
def __init__(self, a, b):
self.a = a
self.b = b
def show_a(self):
print self.a
def show_b(self):
print self.b
__init__ 函数:每次生成类的时候都会执行的, self 指向类对象自身。
记住, 类函数(或者叫做方法) 它的第一个参数 “self” 不要忘记写了
foo_obj = Foo("I'm A", "I'm B")
foo_obj.show_a()
foo_obj.b = "Hello world!"
foo_obj.show_b()
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>