- Python 基础教程
#1 类
#1.1 创建类
我们一起来看下类是如何创建的: 类的定义以关键字<font style="color:rgb(71, 101, 130);">class</font>
开头,后面紧跟类名和冒号,下面跟着是类的主体部分,代码以缩进标识。
我们一起来看下方语句:
1
#创建类Bird
class Bird:
#对象初始化语句
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
#定义方法get_description,参数为self,自动传入
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
2
3
4
5
6
7
8
9
10
11
12 我们创建了一个类
<font style="color:rgb(71, 101, 130);">Bird</font>
,并定义了类 <font style="color:rgb(71, 101, 130);">Bird</font>
的两种方法(类中的函数称作方法) <font style="color:rgb(71, 101, 130);">__init__( )</font>
和<font style="color:rgb(71, 101, 130);">get_description( )</font>
,这两个方法是所有属于类 <font style="color:rgb(71, 101, 130);">Bird</font>
的对象共有的方法,下面我们一起看下 Python 中初始化属性的方法 <font style="color:rgb(71, 101, 130);">__init__( )</font>
。
#1.2 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法
类中的函数称作方法,<font style="color:rgb(71, 101, 130);">__init__()</font>
是一个特殊的方法,每当我们实例化一个对象时,这个方法都会自动执行。方法名的开头为两个下划线,结尾同样为两个下划线,这种命名的习惯主要是为了区分 Python 默认的方法名和我们自己定义的方法名。
<font style="color:rgb(71, 101, 130);">def __init__(self, n, c, s):</font>
语句中,参数 self 表示对象自身,代表实例化对象的引用。参数n, c, s则表示对象的属性,在我们创建的类 <font style="color:rgb(71, 101, 130);">Bird</font>
中就是表示,每一种鸟的具象化特征,比如鹦鹉、绿色、中等大小,因此 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法的作用是为对象的属性赋值。
<font style="color:rgb(71, 101, 130);">__init__()</font>
的参数规则如下图:
<font style="color:rgb(71, 101, 130);">__init__()</font>
方法,并且自动传入参数 self。每个方法都可以包含一个会自动传入的参数 self,这个参数是实例化对象的引用。这样方法便可以访问对象的属性和方法。在实例化对象时,由于 self 参数自动传入的,所以只需要传入其他参数的值。
我们再来一起看下 <font style="color:rgb(71, 101, 130);">__init__()</font>
函数体中的语句:
1
def __init__(self, n, c, s):
#对象初始化语句
self.name = n
self.color = c
self.size = s
2
3
4
5
<font style="color:rgb(71, 101, 130);">__init__()</font>
函数体中,赋值号左边的参数带有 <font style="color:rgb(71, 101, 130);">self</font>
前缀,带有 <font style="color:rgb(71, 101, 130);">self</font>
前缀的变量对于类中的每个方法来说都是可用的,而且也可以通过实例化的对象来访问这些变量。<font style="color:rgb(71, 101, 130);">self.name = n</font>
将参数 <font style="color:rgb(71, 101, 130);">n</font>
赋值给 <font style="color:rgb(71, 101, 130);">name</font>
,<font style="color:rgb(71, 101, 130);">name</font>
便是实例化出来的对象的属性;<font style="color:rgb(71, 101, 130);">self.color = c</font>
将参数 <font style="color:rgb(71, 101, 130);">c</font>
赋值给 <font style="color:rgb(71, 101, 130);">color</font>
,<font style="color:rgb(71, 101, 130);">color</font>
便是实例化出来的对象的属性;<font style="color:rgb(71, 101, 130);">self.size = s</font>
将参数 <font style="color:rgb(71, 101, 130);">s</font>
赋值给 <font style="color:rgb(71, 101, 130);">size</font>
,<font style="color:rgb(71, 101, 130);">size</font>
便是实例化出来的对象的属性。
<font style="color:rgb(71, 101, 130);">Bird</font>
中定义的方法 <font style="color:rgb(71, 101, 130);">get_description()</font>
语句:
1
def get_description(self):
#定义方法get_description,参数为self,自动传入
description = f'{self.name} {self.color} {self.size} '
print(description)
2
3
4 这个方法由于不需要传入额外的信息,所以只要传入
<font style="color:rgb(71, 101, 130);">self</font>
参数,函数中定义了变量 <font style="color:rgb(71, 101, 130);">description</font>
和打印<font style="color:rgb(71, 101, 130);">description</font>
的语句,当调用 <font style="color:rgb(71, 101, 130);">get_description()</font>
方法时,执行打印语句。
我们继续一起来看对象:
#2 对象
类是用来描述具有相同的属性和方法的对象的集合,它定义了该集合中每个对象所共有的属性和方法。类是抽象的,对象是对类进行具象的实例化。我们从刚刚的例子中,也了解到了,类是鸟类,对象是具体的某一种鸟,比如凤凰、麻雀、鹦鹉等等,下面我们就一起来看下如何通过 Python 语句来实现对象的实例化。#2.1 实例化对象
我们先来看下方语句:1
#创建类Bird
class Bird:
#对象初始化语句
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
#定义方法get_description,参数为self,自动传入
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
#实例化对象my_bird,为my_bird赋予属性'鹦鹉', '绿色', '中等大小'
my_bird = Bird('鹦鹉', '绿色', '中等大小')
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 在语句中,我们添加了一句
<font style="color:rgb(71, 101, 130);">my_bird = Bird('鹦鹉', '绿色', '中等大小')</font>
会实例化类 <font style="color:rgb(71, 101, 130);">Bird</font>
的一个对象 <font style="color:rgb(71, 101, 130);">my_bird</font>
,在实例化的过程中,会调用 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法,将值<font style="color:rgb(71, 101, 130);">'鹦鹉'</font>
传递给参数 <font style="color:rgb(71, 101, 130);">n</font>
,值<font style="color:rgb(71, 101, 130);">'绿色'</font>
传递给参数 <font style="color:rgb(71, 101, 130);">c</font>
,值<font style="color:rgb(71, 101, 130);">'中等大小'</font>
传递给参数 <font style="color:rgb(71, 101, 130);">s</font>
。
运行上述语句,我们看并没有结果的输出,因为只完成了类的定义,以及其中一个对象的实例化,并没有去调用类中定义的方法,也没有访问对象的属性。
下面就看一下对象的属性访问。
#2.2 访问属性
访问属性的语法为:<font style="color:rgb(71, 101, 130);">对象名.属性名</font>
。
我们看下方语句:
1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
my_bird = Bird('鹦鹉', '绿色', '中等大小')
print(f"My bird's name is {my_bird.name}")
print(f"My bird's color is {my_bird.color}")
2
3
4
5
6
7
8
9
10
11
12
13
14
15 在上面的语句中,我们通过
<font style="color:rgb(71, 101, 130);">my_bird.name</font>
和 <font style="color:rgb(71, 101, 130);">my_bird.color</font>
访问对象 <font style="color:rgb(71, 101, 130);">my_bird</font>
的属性 <font style="color:rgb(71, 101, 130);">name</font>
和 <font style="color:rgb(71, 101, 130);">color</font>
。我们继续来看如何实现方法的访问。
#2.3 访问方法
访问方法的语法规则和访问属性是类似的,都是用<font style="color:rgb(71, 101, 130);">.</font>
符号来实现:<font style="color:rgb(71, 101, 130);">对象名.方法名</font>
。
我们来看下方语句:
1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
my_bird = Bird('鹦鹉', '绿色', '中等大小')
my_bird.get_description()
2
3
4
5
6
7
8
9
10
11
12
13 我们看到通过访问方法语句
<font style="color:rgb(71, 101, 130);">my_bird.get_description()</font>
,成功执行方法 <font style="color:rgb(71, 101, 130);">get_description()</font>
中的打印语句。
#2.4 实例化多个对象
我们还可以同时实例化多个对象:1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
my_bird = Bird('鹦鹉', '绿色', '中等大小')
your_bird = Bird('麻雀', '灰色', '小小一只')
print(f"My bird's name is {my_bird.name}")
my_bird.get_description()
print(f"Your bird's name is {your_bird.name}")
your_bird.get_description()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 我们实例化了两个对象
<font style="color:rgb(71, 101, 130);">my_bird</font>
和 <font style="color:rgb(71, 101, 130);">your_bird</font>
。在实际应用中,可以用同样的方法实例化多个对象哟!
#2.5 为属性设置默认值
我们也可以为属性设置默认值,一起看下方语句:1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
#设置属性age的默认值为1
self.age = 1
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
#定义获取属性age的方法
def get_age(self):
print(f"This bird is {self.age} ")
my_bird = Bird('鹦鹉', '绿色', '中等大小')
print(f"My bird's name is {my_bird.name}")
my_bird.get_description()
my_bird.get_age()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 我们在上述代码中添加了一个属性 age,并且将默认值设置成 1。并且添加一个方法
<font style="color:rgb(71, 101, 130);">get_age()</font>
用于获取属性 age 的值。
#2.6 直接改变属性的值
我们也可以直接修改属性值,语句为:<font style="color:rgb(71, 101, 130);">对象名.属性名 = 值</font>
,我们一起看下方语句:
1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
self.age = 1
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
def get_age(self):
print(f"This bird is {self.age} ")
my_bird = Bird('鹦鹉', '绿色', '中等大小')
my_bird.age = 3
my_bird.get_age()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#2.7 通过方法改变属性的值
我们也可以通过方法来改变属性的值:1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
self.age = 1
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
def get_age(self):
print(f"This bird is {self.age} ")
def update_age(self, a):
self.age = a
my_bird = Bird('鹦鹉', '绿色', '中等大小')
my_bird.update_age(5)
my_bird.get_age()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 在上述语句中,我们定义了一个改变属性值的方法
<font style="color:rgb(71, 101, 130);">update_age()</font>
,通过调用 <font style="color:rgb(71, 101, 130);">update_age()</font>
来改变属性的值。
#3 继承
在创建类时,不必每次都从零开始,假设我们想要创建的新类和已经创建过的类之间有一些共同的属性和方法,我们就可以从某个现有的类继承,新类称为子类,被继承的类称为父类。继承时,子类会获取父类的所有属性和方法,并且子类还可以定义自己的属性和方法。 子类的语法规则是:<font style="color:rgb(71, 101, 130);">class 新类名(父类名)</font>
,比如 <font style="color:rgb(71, 101, 130);">class Penguin(Bird)</font>
就表示一个子类,父类为 <font style="color:rgb(71, 101, 130);">Bird</font>
。
#3.1 子类的 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法
在实例化子类的对象时,首先要为父类中的属性赋值,对父类属性的赋值可以使用父类的 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法。
1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
self.age = 1
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
def get_age(self):
print(f"This bird is {self.age} ")
def update_age(self, a):
self.age = a
class Penguin(Bird):
def __init__(self, n, c, s):
super().__init__(n, c, s)
my_bird = Penguin('企鹅', '黑白', '大')
my_bird.get_description()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 在上面的例子中,定义了一个新类
<font style="color:rgb(71, 101, 130);">Penguin</font>
,新类继承自 <font style="color:rgb(71, 101, 130);">Bird</font>
。在子类 <font style="color:rgb(71, 101, 130);">Penguin</font>
的 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法中调用父类 <font style="color:rgb(71, 101, 130);">Bird</font>
的 <font style="color:rgb(71, 101, 130);">__init__()</font>
方法对父类中的属性进行赋值。语句中的 <font style="color:rgb(71, 101, 130);">super()</font>
函数是用于调用父类的一个方法。
#3.2 定义子类的属性和方法
我们也可以在子类中定义属性和方法,语法规则和在类中定义属性和方法的规则一致,我们看下方语句:1
class Bird:
def __init__(self, n, c, s):
self.name = n
self.color = c
self.size = s
self.age = 1
def get_description(self):
description = f'{self.name} {self.color} {self.size} '
print(description)
def get_age(self):
print(f"This bird is {self.age} ")
def update_age(self, a):
self.age = a
class Penguin(Bird):
def __init__(self, n, c, s):
super().__init__(n, c, s)
self.swimming_distance = 100
def get_swimming_distance(self):
print(f"企鹅可以游 {self.swimming_distance} 米.")
my_bird = Penguin('企鹅', '黑白', '大')
my_bird.get_description()
my_bird.get_swimming_distance()
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 为子类添加了属性
<font style="color:rgb(71, 101, 130);">swimming_distance</font>
和方法 <font style="color:rgb(71, 101, 130);">get_swimming_distance()</font>
,通过访问属性和方法打印出相应的结果。
#4 总结
#5 练习题
定义一个表示鱼的类,并定义它的继承类海鱼。更新于: 12/30/2021, 2:46:39 AM