日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python getattr_python __getattr__

發布時間:2024/4/13 python 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python getattr_python __getattr__ 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

這是python里的一個內建函數,當調用的屬性或者方法不存在時,該方法會被調用

調用不存在的屬性

class Student(object):

def __getattr__(self, attr):

if attr in ('name', 'age', 'score'):

print attr

else:

raise AttributeError('Unkonw attribute : %s' % attr)

In [8]: student = Student()

In [9]: student.name

name

In [10]: student.age

age

In [11]: student.call

AttributeError: Unkonw attribute : call

調用不存在的方法

class Student(object):

def __getattr__(self, attr):

def _func(*arg, **kwargs):

print arg, kwarg

if not attr.startswith('_'):

_func.func_name = attr

return _func

raise AttributeError('Unkonw attribute : %s' % attr)

In [22]: student = Student()

In [23]: student.name

Out[23]:

In [24]: student.name('a', 'b', c=1, d=2)

('a', 'b') {'c': 1, 'd': 2}

In [25]: student._age('a', 'b', c=1, d=2)

AttributeError: Unkonw attribute : _age

例一: 訪問屬性一樣訪問dict中的鍵值對

class Dict(dict):

def __init__(self, *args, **kwargs):

super(Dict, self).__init__(*args, **kwargs)

def __getattr__(self, name):

value = self[name]

if isinstance(value, dict):

value = Dict(value)

return value

In [27]: obj = Dict(student={'age': 18}, name='ZhangSan')

In [28]: obj

Out[28]: {'name': 'ZhangSan', 'student': {'age': 18}}

In [29]: obj.name

Out[29]: 'ZhangSan'

In [30]: obj.student

Out[30]: {'age': 18}

In [31]: obj.student.age

Out[31]: 18

總結

以上是生活随笔為你收集整理的python getattr_python __getattr__的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。