码迷,mamicode.com
首页 > 编程语言 > 详细

Python自学之乐-python 2、python 3中经典类、新式类的深度和广度优先小结

时间:2017-09-17 17:29:11      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:运行   sel   print   ini   经典   自学   second   __init__   总结   

#Author:clark
class Original(object):#在python 3 中写上object的新式类和不写的经典类遵循的都是广度优先原则
def __init__(self):
print("in Original")
class Second(Original):
pass
# def __init__(self):
# print("in the second")
class Third(Original):
def __init__(self):
print("in the third")
class Last(Second,Third):
pass
# def __init__(self):
# print("in the last")

last_obj = Last()
运行结果为:
in the third

如果在python2中经典类结果为
in Original
新式类的结果为
in the third
可以在python2环境中试一下

总结:
python2 中经典类遵循深度优先原则,新式类遵循广度优先原则
python3 中经典类和新式类都遵循广度优先原则

Python自学之乐-python 2、python 3中经典类、新式类的深度和广度优先小结

标签:运行   sel   print   ini   经典   自学   second   __init__   总结   

原文地址:http://www.cnblogs.com/clarkxhb/p/7536120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!