python __getattra__()
2019-04-29 08:51:55来源:博客园 阅读 ()
官网解释:
-
object.
__getattr__
(self, name) -
Called when an attribute lookup has not found the attribute in the usual places (i.e. it is not an instance attribute nor is it found in the class tree for
self
).name
is the attribute name. This method should return the (computed) attribute value or raise anAttributeError
exception.
当我们想调用Class中某些东西,而Class中没有,解释器铁定报错,停止运行,那有人就想了:真麻烦,每次都要重新执行一遍,如果当我调用错了内容,程序能把我这个错误当默认程序执行,而不停止我程序运行就好了。so,为了解决这类问题,就出来了__getattr__这个函数了。
我猜的,因为解决程序困难也是一种需求。
看没有__getattr的出错调用:
#!/usr/bin/python
# -*- coding: utf-8 -*-
class Student(object):
def __init__(self):
self.name = 'Michael'
s = Student()
print s.name
print s.score #Class中没有这个属性
look, 第一个print正常执行,第二个由于Class中没有这个属性,所以就报错了。
再看,带__getattr__的Class:
#!/usr/bin/python
# -*- coding: utf-8 -*-
class Student(object):
def __init__(self):
self.name = 'Michael'
def __getattr__(self, other):
if other=='score':
return 99
s = Student()
print s.name
print s.score #Class中没有这个属性
print s.gg #Class中没有这个属性
look again, print 的score 和 gg 在Class中都没有定义,但都有输出。因为程序往__getattr__中找,刚刚好定义了一个字符判断 if other=='score':, 所以输出了99 ,而gg一个字都没提,就默认输出None了。是不是感觉以后码程序的时候再也不用担心程序停止运行了。
※发现的强大的链式调用写法:
class Chain(object): def __init__(self, path=''): self._path = path def __getattr__(self, path): return Chain('%s/%s' % (self._path, path)) #调用自己 def __str__(self): return self._path __repr__ = __str__ f = Chain() print (f.www.anc.do.glob)
结果:
/www/anc/do/glob
原文链接:https://www.cnblogs.com/yunqingtuo/p/10790739.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:(1)并发编程实现的基础
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash