一文讀懂Python中的對映

daqianmen發表於2021-09-11

一文讀懂Python中的對映

python中的反射功能是由以下四個內建函式提供:hasattr、getattr、setattr、delattr,改四個函式分別用於對物件內部執行:檢查是否含有某成員、獲取成員、設定成員、刪除成員。

獲取成員: getattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
obj = Foo('klvchen', 18)
inp = input('>>>')
v = getattr(obj, inp)
print(v)

執行結果:

>>>name
klvchen
class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
func = getattr(obj, 'show')
print(func)
res = func()
print(res)

執行結果:

<bound method Foo.show of <__main__.Foo object at 0x00000234F6942588>>
klvchen-18

檢查是否含有成員: hasattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
print(hasattr(obj, 'name1'))

執行結果:

False

設定成員: setattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
# print(hasattr(obj, 'name1'))
setattr(obj, 'key', 'value')
print(obj.key)

執行結果:

value

相關推薦:《》

刪除成員: delattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
print(obj.name)
delattr(obj, 'name')
print(obj.name)

執行結果:

klvchen
AttributeError: 'Foo' object has no attribute 'name'

透過字串的形式操作物件中的成員

class Foo:
    stat = '666'
    def __init__(self, name, age):
        self.name = name
        self.age = age
res = getattr(Foo, 'stat')
print(res)

執行結果:

666

建立兩個檔案,s1.py 和 s2.py

s2.py 內容如下:

NAME = 'klvchen'
def func():
    return 'func'

s1.py 內容如下:

import s2
res1 = getattr(s2, 'NAME')
print(res1)
res2 = getattr(s2, 'func')
result = res2()
print(result)

執行 s1.py 檔案:

klvchen
func

建立兩個檔案,s1.py 和 s2.py

s2.py 內容如下:

NAME = 'klvchen'
def func():
    return 'cwe'
class Foo:
    def __init__(self):
        self.name = 666

s1.py 內容如下:

import s2
res1 = getattr(s2, 'NAME')
print(res1)
res2 = getattr(s2, 'func')
result = res2()
print(result)
cls = getattr(s2, 'Foo')
print(cls)
obj = cls()
print(obj)
print(obj.name)

執行 s1.py 檔案,執行結果:

klvchen
cwe
<class 's2.Foo'>
<s2.Foo object at 0x000001CFCDBB2438>
666

建立兩個檔案,s1.py 和 s2.py

s2.py 內容如下:

def f1():
    return '首頁'
def f2():
    return '新聞'
def f3():
    return '精華'

s1.py 內容如下:

import s2
inp = input('請輸入要檢視的URL: ')
if hasattr(s2, inp):
    func = getattr(s2, inp)
    result = func()
    print(result)
else:
    print('404')

執行 s1.py 檔案,執行結果:

請輸入要檢視的URL: f1
首頁

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1727/viewspace-2837195/,如需轉載,請註明出處,否則將追究法律責任。

相關文章