魔法方法、属性和迭代器
作者:追风剑情 发布于:2017-12-19 15:24 分类:Python
示例
# -*- coding: cp936 -*-
#魔法方法、属性和迭代器
class NewStyle(object):#继承object的类作为新式类
pass
#这句声明之后定义的类都为新式类
__metaclass__ = type #使用新式类
#在Python3.0中都是新式类,不需要显示声明.
class FooBar:
def __init__(self): #定义构造方法
self.somevar = 42
class FooBar1:
def __init__(self, value=42): #带形参的构造方法
self.somevar = value
def __del__(self): #对象被回收前会调用析构方法
print '析构方法被调用'
class A:
def hello(self):
print "Hello, I'm A."
class B(A):
def hello(self): #重定A类的hello方法
print "Hello, I'm B."
class Bird:
def __init__(self):
self.hungry = True
def eat(self):
if self.hungry:
print 'Aaaah...'
self.hungry = False
else:
print 'No. thanks!'
class SongBird(Bird):
def __init__(self):
#Bird.__init__(self) #调用父类的构造方法,这是旧版Python的写法
super(SongBird, self).__init__() #新式类中可以这样写(推荐写法)
#Python3.0中super函数可以不带任何参数。
self.sound = 'Squawk!'
def sing(self):
print self.sound
#继承内建类型
class CounterList(list):
def __init__(self, *args):
super(CounterList, self).__init__(*args)
self.counter = 0
def __getitem__(self, index):
self.counter += 1
return super(CounterList, self).__getitem__(index)
print '构造方法'
f = FooBar()
print f.somevar
f = FooBar1("This is a constructor argument")
print f.somevar
print '重写超类方法'
a = A()
b = B()
a.hello()
b.hello()
sb = SongBird()
sb.sing()
sb.eat()
sb.eat()
print '继承内建类型'
cl = CounterList(range(10))
print cl
cl.reverse()
print cl
del cl[3:6]
print cl
print cl[4] + cl[2] #通过索引访问会调用__getitem__()方法
print cl.counter
print '属性访问器方法'
#在新式类中推荐用访问器访问属性
class Rectangle:
def __init(self):
self.width = 0
self.height = 0
def setSize(self, size):
self.width, self.height = size
def getSize(self):
return self.width, self.height
#property函数只在新式类中有用
#property(fget、fset、fdel、doc) 可以用关键字参数赋值
#fdel是一个用于删除特性的方法(它不要参数)
#doc是一个文档字符串
size = property(getSize, setSize) #创建属性size
#size = property(getSize) #创建只读属性size
r = Rectangle()
r.width = 10
r.height = 5
print r.getSize()
r.setSize((150, 100))
print r.width
r.size = 200, 300
print r.width
print '静态方法和类成员方法'
#老版本Python实现方式
class MyClass:
def smeth(): #静态方法没self参数
print 'This is a static method'
smeth = staticmethod(smeth) #手动包装(替换),现在smeth才是真正的静态方法。
def cmeth(cls):#实例方法
print 'This is a class method of ', cls
cmeth = classmethod(cmeth) #手动包装(替换),现在cmeth才是真正的实例方法。
#Python2.4之后的实现方式
class MyClass1:
@staticmethod
def smeth():#静态方法
print 'This is a static method'
@classmethod
def cmeth(cls):#实例方法
print 'This is a class method of ', cls
MyClass1.smeth()
MyClass1.cmeth()
print '__getattr__、setattr__'
#__getattribute__(self, name)当特性name被访问时自动被调用(只能在新式类中使用)
#__getattr__(self, name)当特性name被访问且对象没有相应的特性时被自动调用。
#__setattr__(self, name, value)当试图给特性name赋值时会被自动调用。
#__delattr__(self, name)当试图删除特性name时被自动调用。
class Rectangle1:
def __init__(self):
self.width = 0
self.height = 0
def __setattr__(self, name, value):#给特性赋值时会被调用
if name == 'size':
self.width, self.height = value
else:
#__dict__方法被用来代替普通的特性赋值操作
self.__dict__[name] = value #必须这样赋值,否则会陷入死循环
#在旧式类中特性没有被找到时会被调用
#在新式类中会拦截所有特性访问
def __getattr__(self, name):
if name == 'size':
return self.width, self.height
else:
raise AttributeError
print '迭代器__iter__'
#实现了__iter__方法的对象可迭代
#迭代器需要实现next方法
#在旧版本中要求迭代器实现next方法
#在Python3.0中要求迭代器实现__next__方法, 可以这样迭代next(it)
class Fibs:
def __init__(self):
self.a = 0
self.b = 1
def next(self):
self.a, self.b = self.b, self.a+self.b #生成下一个斐波那契数
return self.a
def __iter__(self):
return self
fibs = Fibs()
for f in fibs:#迭代对象
if f > 1000:
print f
break;
#内建函数iter可以从可迭代的对象中获得迭代器
it = iter([1,2,3])
print it.next()
print it.next()
print '从迭代器得到序列'
class TestIterator:
value = 0
def next(self):
self.value += 1
if self.value > 10: raise StopIteration #结束迭代
return self.value
def __iter__(self):
return self
ti = TestIterator()
print list(ti)
print '生成器'
#生成器是一个包含yield关键字的函数
#yield语句意味着应该生成一个值
#return语句意味着生成器要停止执行(return语句只有在一个生成器中使用时才能进行无参数调用)
#创建一个生成器函数
def flatten(nested):
for sublist in nested:
for element in sublist:
yield element
nested = [[1,2], [3,4], [5]]
#迭代nested
for num in flatten(nested):
print num
#或者直接转成list输出
print list(flatten(nested))
print '生成器推导式'
g = ((i+2)**2 for i in range(2,27))
print g.next()
print sum(i**2 for i in range(10))#生成器推导式可以作为参数直接作用
print '递归迭代'
def flatten1(nested):
try:
#不要迭代类似字符串的对象
try: nested + '' #通过检查可拼接性
except TypeError: pass
else: raise TypeError
for sublist in nested:
for element in flatten1(sublist):
yield element
except TypeError:
yield nested
print list(flatten1(nested))
print '生成器方法' #Python2.5引入
print '生成器的send方法'
def repeater(value):
while True:
new = (yield value)#用括号闭合yield表达式
if new is not None: value = new
r = repeater(42)
print r.next()
print r.send("Hello. world!")#给生成器发送参数
#生成器还有两个方法throw方法、close方法
#生成器在旧版Python中不可用
#下面用普通函数来实现生成器
def flatten2(nested):
result = []
try:
try: nested + ''
except TypeError: pass
else: raise TypeError
for sublist in nested:
for element in flatten1(sublist):
result.append(element)
except TypeError:
result.append(nested)
return result
print list(flatten2(nested))
运行测试
标签: Python
日历
最新文章
随机文章
热门文章
分类
存档
- 2025年11月(1)
- 2025年9月(3)
- 2025年7月(4)
- 2025年6月(5)
- 2025年5月(1)
- 2025年4月(5)
- 2025年3月(4)
- 2025年2月(3)
- 2025年1月(1)
- 2024年12月(5)
- 2024年11月(5)
- 2024年10月(5)
- 2024年9月(3)
- 2024年8月(3)
- 2024年7月(11)
- 2024年6月(3)
- 2024年5月(9)
- 2024年4月(10)
- 2024年3月(11)
- 2024年2月(24)
- 2024年1月(12)
- 2023年12月(3)
- 2023年11月(9)
- 2023年10月(7)
- 2023年9月(2)
- 2023年8月(7)
- 2023年7月(9)
- 2023年6月(6)
- 2023年5月(7)
- 2023年4月(11)
- 2023年3月(6)
- 2023年2月(11)
- 2023年1月(8)
- 2022年12月(2)
- 2022年11月(4)
- 2022年10月(10)
- 2022年9月(2)
- 2022年8月(13)
- 2022年7月(7)
- 2022年6月(11)
- 2022年5月(18)
- 2022年4月(29)
- 2022年3月(5)
- 2022年2月(6)
- 2022年1月(8)
- 2021年12月(5)
- 2021年11月(3)
- 2021年10月(4)
- 2021年9月(9)
- 2021年8月(14)
- 2021年7月(8)
- 2021年6月(5)
- 2021年5月(2)
- 2021年4月(3)
- 2021年3月(7)
- 2021年2月(2)
- 2021年1月(8)
- 2020年12月(7)
- 2020年11月(2)
- 2020年10月(6)
- 2020年9月(9)
- 2020年8月(10)
- 2020年7月(9)
- 2020年6月(18)
- 2020年5月(4)
- 2020年4月(25)
- 2020年3月(38)
- 2020年1月(21)
- 2019年12月(13)
- 2019年11月(29)
- 2019年10月(44)
- 2019年9月(17)
- 2019年8月(18)
- 2019年7月(25)
- 2019年6月(25)
- 2019年5月(17)
- 2019年4月(10)
- 2019年3月(36)
- 2019年2月(35)
- 2019年1月(28)
- 2018年12月(30)
- 2018年11月(22)
- 2018年10月(4)
- 2018年9月(7)
- 2018年8月(13)
- 2018年7月(13)
- 2018年6月(6)
- 2018年5月(5)
- 2018年4月(13)
- 2018年3月(5)
- 2018年2月(3)
- 2018年1月(8)
- 2017年12月(35)
- 2017年11月(17)
- 2017年10月(16)
- 2017年9月(17)
- 2017年8月(20)
- 2017年7月(34)
- 2017年6月(17)
- 2017年5月(15)
- 2017年4月(32)
- 2017年3月(8)
- 2017年2月(2)
- 2017年1月(5)
- 2016年12月(14)
- 2016年11月(26)
- 2016年10月(12)
- 2016年9月(25)
- 2016年8月(32)
- 2016年7月(14)
- 2016年6月(21)
- 2016年5月(17)
- 2016年4月(13)
- 2016年3月(8)
- 2016年2月(8)
- 2016年1月(18)
- 2015年12月(13)
- 2015年11月(15)
- 2015年10月(12)
- 2015年9月(18)
- 2015年8月(21)
- 2015年7月(35)
- 2015年6月(13)
- 2015年5月(9)
- 2015年4月(4)
- 2015年3月(5)
- 2015年2月(4)
- 2015年1月(13)
- 2014年12月(7)
- 2014年11月(5)
- 2014年10月(4)
- 2014年9月(8)
- 2014年8月(16)
- 2014年7月(26)
- 2014年6月(22)
- 2014年5月(28)
- 2014年4月(15)
友情链接
- Unity官网
- Unity圣典
- Unity在线手册
- Unity中文手册(圣典)
- Unity官方中文论坛
- Unity游戏蛮牛用户文档
- Unity下载存档
- Unity引擎源码下载
- Unity服务
- Unity Ads
- wiki.unity3d
- Visual Studio Code官网
- SenseAR开发文档
- MSDN
- C# 参考
- C# 编程指南
- .NET Framework类库
- .NET 文档
- .NET 开发
- WPF官方文档
- uLua
- xLua
- SharpZipLib
- Protobuf-net
- Protobuf.js
- OpenSSL
- OPEN CASCADE
- JSON
- MessagePack
- C在线工具
- 游戏蛮牛
- GreenVPN
- 聚合数据
- 热云
- 融云
- 腾讯云
- 腾讯开放平台
- 腾讯游戏服务
- 腾讯游戏开发者平台
- 腾讯课堂
- 微信开放平台
- 腾讯实时音视频
- 腾讯即时通信IM
- 微信公众平台技术文档
- 白鹭引擎官网
- 白鹭引擎开放平台
- 白鹭引擎开发文档
- FairyGUI编辑器
- PureMVC-TypeScript
- 讯飞开放平台
- 亲加通讯云
- Cygwin
- Mono开发者联盟
- Scut游戏服务器引擎
- KBEngine游戏服务器引擎
- Photon游戏服务器引擎
- 码云
- SharpSvn
- 腾讯bugly
- 4399原创平台
- 开源中国
- Firebase
- Firebase-Admob-Unity
- google-services-unity
- Firebase SDK for Unity
- Google-Firebase-SDK
- AppsFlyer SDK
- android-repository
- CQASO
- Facebook开发者平台
- gradle下载
- GradleBuildTool下载
- Android Developers
- Google中国开发者
- AndroidDevTools
- Android社区
- Android开发工具
- Google Play Games Services
- Google商店
- Google APIs for Android
- 金钱豹VPN
- TouchSense SDK
- MakeHuman
- Online RSA Key Converter
- Windows UWP应用
- Visual Studio For Unity
- Open CASCADE Technology
- 慕课网
- 阿里云服务器ECS
- 在线免费文字转语音系统
- AI Studio
- 网云穿
- 百度网盘开放平台
- 迅捷画图
- 菜鸟工具
- [CSDN] 程序员研修院
- 华为人脸识别
- 百度AR导航导览SDK
- 海康威视官网
- 海康开放平台
- 海康SDK下载
- git download
- Open CASCADE
- CascadeStudio
交流QQ群
-
Flash游戏设计: 86184192
Unity游戏设计: 171855449
游戏设计订阅号







