再次了解多继承
先来一段代码
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env python
# _*_ coding:utf-8 _*_
class
A:
def
bar(
self
):
print
(
"BAR"
)
self
.f1()
class
B(A):
def
f1(
self
):
print
(
"B"
)
class
C:
def
f1(
self
):
print
(
"C"
)
class
D(C, B):
pass
obj
=
D()
obj.bar()
|
执行结果
|
1
2
3
4
5
|
/
usr
/
bin
/
python3.
5
/
home
/
ansheng
/
文档
/
Python_code
/
sublime
/
Week06
/
Day03
/
s1.py
BAR
C
Process finished with exit code
0
|
流程释意:
-
创建了类A、B、C、D;
-
D继承了C和B,B继承了A,D内什么都不做,pass; -
创建一个对象
obj,类是D,当执行D的bar方法的时候会先从C里面寻找有没有bar方法; -
C内没有bar方法,然后继续从B里面查找,B里面也没有,B的父类是A,A里面有bar方法,所以就执行了A的bar方法; -
A的bar方法首先输出了BAR; -
然后又执行了
self.f1(),self=obj,相当于执行了obj.f1(); -
执行
obj.f1()的时候先从C里面查找有没有f1这个方法,C里面又f1这个方法; -
最后就执行
C里面的f1方法了,输出了C
执行父类的构造方法
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class
Annimal:
def
__init__(
self
):
print
(
"Annimal的构造方法"
)
self
.ty
=
"动物"
class
Cat(Annimal):
def
__init__(
self
):
print
(
"Cat的构造方法"
)
self
.n
=
"猫"
# 寻找Cat类的父类,然后执行父类的构造方法
super
(Cat,
self
).__init__()
mao
=
Cat()
print
(mao.__dict__)
|
执行结果
|
1
2
3
4
5
6
|
/
usr
/
bin
/
python3.
5
/
home
/
ansheng
/
文档
/
Python_code
/
sublime
/
Week06
/
Day03
/
s1.py
Cat的构造方法
Annimal的构造方法
{
'ty'
:
'动物'
,
'n'
:
'猫'
}
Process finished with exit code
0
|
先执行了Cat的构造方法,然后又执行了Annimal的构造方法。
第二种执行父类的方法如下:
|
1
|
Annimal.__init__(
self
)
|
不推荐使用
利用反射查看面向对象成员归属
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python
# _*_ coding:utf-8 _*_
class
Foo:
def
__init__(
self
, name):
self
.name
=
name
def
show(
self
):
print
(
'show'
)
obj
=
Foo(
"as"
)
# 如果是类,就只能找到类里的成员
print
(
hasattr
(Foo,
"show"
))
# 如果是对象,既可以找到对象,也可以找类里的成员
print
(
hasattr
(obj,
"name"
))
print
(
hasattr
(obj,
"show"
))
|
执行结果
|
1
2
3
4
5
6
|
/
usr
/
bin
/
python3.
5
/
home
/
ansheng
/
文档
/
Python_code
/
sublime
/
Week06
/
Day03
/
s2.py
True
True
True
Process finished with exit code
0
|
利用反射导入模块、查找类、创建对象、查找对象中的字段
s1脚本文件内容:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python
# _*_coding:utf-8 _*_
# 导入模块
m
=
__import__
(
's2'
, fromlist
=
True
)
# 去模块中找类
class_name
=
getattr
(m,
"Foo"
)
# 根据类创建对象
obj
=
class_name(
"ansheng"
)
# 去对象中找name对应的值
print
(
getattr
(obj,
'name'
))
|
s2脚本文件内容
|
1
2
3
4
5
6
7
|
#!/usr/bin/env python
# _*_coding:utf-8 _*_
class
Foo:
def
__init__(
self
, name):
# 普通字段,保存在对象中
self
.name
=
name
|
执行结果:
|
1
2
3
4
|
/
usr
/
bin
/
python3.
5
/
home
/
ansheng
/
文档
/
Python_code
/
sublime
/
Week06
/
Day04
/
s1.py
ansheng
Process finished with exit code
0
|
面向对象类成员之静态字段
静态字段存在类中,如下:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env python
# _*_coding:utf-8 _*_
# 静态字段存在的意义就是将每个对象中重复的东西在类里面保存一份即可,这就是静态字段
class
Provice:
# 静态字段
contry
=
"China"
def
__init__(
self
, name):
self
.name
=
name
def
show(
self
):
print
(Provice.contry,
self
.name)
hebei
=
Provice(
"河北"
)
hebei.show()
hubei
=
Provice(
"湖北"
)
hubei.show()
|
执行结果
|
1
2
3
4
5
|
/
usr
/
bin
/
python3.
5
/
home
/
ansheng
/
文档
/
Python_code
/
sublime
/
Week06
/
Day04
/
s2.py
China 河北
China 湖北
Process finished with exit code
0
|
类里面的成员类去访问,对象内的成员用对象去访问。
面向对象类成员之静态方法
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env python
# _*_coding:utf-8 _*_
class
Foo:
# 静态方法括号内没有self,切方法前一行要加上@staticmethod
@
staticmethod
def
static():
# def static(arg1, arg2): # 也可以设置参数
print
(
"static"
)
# 静态方法通过类名+方法名既可执行
Foo.static()
# Foo.static("arg1", "arg2") 通过类调用的时候传入对于的参数即可
# 静态方法也可以通过对象去访问,对于静态方法用类去访问
obj
=
Foo()
obj.static(
|
执行结果
/usr/bin/python3.5 /home/ansheng/文档/Python_code/sublime/Week06/Day04/s2.py static static Process finished with exit code 0
面向对象类成员之类方法
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env python
# _*_coding:utf-8 _*_
class
Foo:
# 创建类方法的时候需要在方法前面加上@classmethod
@
classmethod
def
ClassMethod
(
cls
):
# 并且方法的括号内必须带有cls关键字,类方法的参数是当前类的类名
print
(
"类方法"
)
# 调用类方法
Foo.
ClassMethod
()
|
执行结果:
|
1
2
3
4
|
/
usr
/
bin
/
python3.
5
/
home
/
ansheng
/
文档
/
Python_code
/
sublime
/
Week06
/
Day04
/
s2.py
类方法
Process finished with exit code
0
|
面向对象类成员内容梳理
字段
1.静态字段(每个对象都有一份)
2.普通字段(每个对象都不同的数据)
方法
1.静态方法(无需使用对象封装的内容)
2.类方法
3.普通方法(适用对象中的数据)
特性
1.普通特性(将方法未造成字段)
快速判断,类执行、对象执行:
1.self —> 对象调用
2.无self —> 类调用
本文转自 Edenwy 51CTO博客,原文链接:http://blog.51cto.com/edeny/1917743,如需转载请自行联系原作者