Python 学习第四天

时间:2021-11-11 16:58:52

python中的类

类的定义:

>>> class Test:
 def A(self):

  i=12345
  print('test')

类的使用:t=Test()//实例化一个Test类的对象

t.A()//调用Test类中的方法A.

t.i//调用Test类中过的属性i

注意:在类中定义的方法不管是有参还是无参,第一个参数都要写self。调用的时候不需要给self赋值

类的继承:

>>> class A:
 a=123
 def test(self):
  print("this is A test")

  
>>> class B(A):
 b=456
 def test(self):
  print("this is B test")

  
>>> b=B()
>>> b.a
123
>>> b.test()
this is B test
>>> b.b
456