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

python Class:面向对象高级编程 __getattr__

时间:2018-07-20 14:01:45      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:ati   att   ocs   高级   错误   ISE   link   mod   cep   

官网解释:

  • object.__getattr__(selfname)

  • 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 an AttributeError 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了。是不是感觉以后码程序的时候再也不用担心程序停止运行了。

python Class:面向对象高级编程 __getattr__

标签:ati   att   ocs   高级   错误   ISE   link   mod   cep   

原文地址:http://blog.51cto.com/13502993/2147582

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