位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

Python 面向对象编程(基于对象)

提问人:杨紫红发布时间:2020-11-17

 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()

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部