組合,反射,魔術方法

来源:https://www.cnblogs.com/zhangfanshixiaobai/archive/2023/10/10/17755797.html
-Advertisement-
Play Games

組合,反射,魔術方法 組合 反射 魔術方法 組合 什麼是組合? 組合就是,一個對象擁有一個屬性,該屬性的值是另外一個對象. """什麼場景下使用繼承? 什麼場景下使用組合?""" 繼承一般情況用在:什麼是什麼的情況 is 組合一般用在:什麼有什麼的情況 has class Foo: def __in ...


組合,反射,魔術方法

  1. 組合
  2. 反射
  3. 魔術方法

組合

什麼是組合?
	組合就是,一個對象擁有一個屬性,該屬性的值是另外一個對象.
 """什麼場景下使用繼承? 什麼場景下使用組合?"""
繼承一般情況用在:什麼是什麼的情況 is
組合一般用在:什麼有什麼的情況 has
class Foo:
    def __init__(self, m):
        self.m = m

class Bar():
    def __init__(self, n):
        self.n = n
"""一個對象擁有一個屬性,該屬性的值是另外一個對象."""
obj=Bar(10)
obj1 = Foo(20)
# 超級對象,通過一個屬性可以訪問到另外一個對象的值
obj.x=obj1

print(obj.x.m)  

案例


組合案例:選課

class People():#父類
    school = 'SH'

    def __init__(self, name, age, gender, course_name=None, course_price=None, course_period=None):
        self.name = name
        self.age = age
        self.gender = gender
        # self.course_name = course_name
        # self.course_price = course_price
        # self.course_period = course_period
class Admin(People):#管理員
    def __init__(self, name, age, gender):
        super().__init__(name, age, gender)

class Course():#科目
    def __init__(self, name, price, period):
        self.name = name
        self.price = price
        self.period = period


python=Course('python', 10000, '6mon')#添加科目
linux=Course('linux', 20000, '5mon')
# print(python.name)
# print(python.price)
# print(python.period)

class Student(People):
    #學生
    def __init__(self, name, age, gender, course=None):
        super().__init__(name, age, gender)
        if course is None:
            course = []
        self.course = course


stu = Student('kevin', 20, 'male')
stu.course.append(python.name)#進行組合
stu.course.append(linux.name)#組合
print(stu.course) # [<__main__.Course object at 0x000001F258F86B80>, <__main__.Course object at 0x000001F258F511C0>]
# stu.course: []
for i in stu.course:
    print(i)

class Teacher(People):#老師
    def __init__(self, name, age, gender, level):
        super().__init__(name, age, gender)
        self.level = level


tea = Teacher('ly', 19, 'female', 10)
# print(tea.course_name)
tea.course=linux#創建一個course,將linux組合
print(tea.course.period)
print(tea.course.name)
print(tea.course.price)

反射

在Python中,反射指的是通過字元串來操作對象的屬性,涉及到四個內置函數的使用(Python中一切皆對象,類和對象都可以用下述四個方法)

四個內置函數:
    getattr: 獲取屬性 ##### 用的最多
    setattr:設置屬性
    hasattr:判斷是否有某個屬性
    delattr:刪除

getattr 獲取屬性

class Student():
    school = 'SH'

    def __init__(self,name, age):
        self.name=name
        self.age = age

    def func(self):
        print('from func')

    def index(self):
        print('from index')
stu = Student('kevin', 20)
# attr=input('請輸入你要操作的屬性名:')
"""反射:就是通過字元串的形式來操作對象的屬性"""
# 1. 獲取屬性
"""當你查詢的屬性不存在的時候,如果給了第三個參數,就返回第三個參數"""
print(stu.school)
res = getattr(stu, 'school1', 666)
print(res)
res1=getattr(stu,'shool',666)
print(res1)#666
res2=getattr(stu,'name')
print(res2)
### 函數的用法

"""必須掌握!!!!!!"""
res=getattr(stu, 'func1', stu.index)#等同於stu.func1,不存在該屬性則返回預設值stu.index
res()

setattr:設置屬性

### 設置
class Student():
    school = 'SH'

    def __init__(self,name, age):
        self.name=name
        self.age = age

    def func(self):
        print('from func')

    def index(self):
        print('from index')
stu = Student('kevin', 20)
setattr(stu, 'x', 666) # stu.x=666
print(stu.__dict__)#{'name': 'kevin', 'age': 20, 'x': 666}

hasattr:判斷是否有某個屬性

#判斷

class Student():
    school = 'SH'

    def __init__(self,name, age):
        self.name=name
        self.age = age

    def func(self):
        print('from func')

    def index(self):
        print('from index')
stu = Student('kevin', 20)
print(hasattr(stu, 'func'))#True
print(hasattr(stu,'qwe'))#False
if hasattr(stu, 'func'):
    getattr(stu, 'func')()
else:
    pass

delattr:刪除

class Student():
    school = 'SH'

    def __init__(self,name, age):
        self.name=name
        self.age = age

    def func(self):
        print('from func')

    def index(self):
        print('from index')
stu = Student('kevin', 20)

delattr(stu, 'name')

print(stu.__dict__)#{'age': 20}

魔術方法

init str,repr

class Student():
    def __init__(self, name, age):
        self.name = name
        self.age = age

    """
        1. 列印對象的時候,輸出對象的時候會自動觸發類中得__str__方法
        2. 返回值必須是字元串形式
        3. 如果它跟__repr__方法同時存在,__str__的優先順序更高
    """
    def __str__(self): # 這個用的是最多的
        print('str')
        return 'from str'

    def __repr__(self):
        print('repr')
        return 'from repr'
wqe=Student('qwe',12)
print(wqe)#str  from str

# print('repr:', repr(wqe))
print('str:', str(wqe))#str  str: from str

del

class MySQL:
    def __init__(self, ip, port):
        self.ip = ip
        self.port = port
        self.f = open('a.txt', 'w')
    """
    1.當你刪除對象的時候會觸發__del__的執行
    2. 當整個腳本的程式都執行完畢的時候,也會觸發__del__的執行
    3. 一般用在用來在對象被刪除時自動觸發回收系統資源的操作
    """
    def __del__(self):
        print('from _del')
        self.f.close()


mysql = MySQL('127.0.0.1', 3306)

issubclass方法用於判斷參數 class 是否是類型參數 classinfo 的子類

class Foo:
    pass
class Bar(Foo):
    pass
class Bar1():
    pass
print(issubclass(Bar1, Foo))

__doc__註釋無法繼承

class Foo:
    """
    '我是描述信息asdasd'
    '我是描述信息asdasd'
    '我是描述信息asdasd'
    """

    pass
class Bar(Foo):
    pass
print(Foo.__doc__)
    # '我是描述信息asdasd'
    # '我是描述信息asdasd'
    # '我是描述信息asdasd'
print(Bar.__doc__)
#None

enter和exit 上下文管理器with原理

class Open:
    def __init__(self, name):
        self.name = name

    def __enter__(self):
        print('出現with語句,對象的__enter__被觸發,有返回值則賦值給as聲明的變數')
        # return self

    def __exit__(self, exc_type, exc_val, exc_tb):
        print('with中代碼塊執行完畢時執行我啊')

"""with它可以用在很多地方,但是,出現with語句後面的對象中得類必須要聲明__enter__和__exit__"""

with Open('a.txt') as f:
    print('=====>執行代碼塊')
    print('=====>執行代碼塊')
    print('=====>執行代碼塊')
    print('=====>執行代碼塊')
    print('=====>執行代碼塊')
    # print(f,f.name)
    
簡答題:先聊聊with 的用法? 問with上下文管理協議的執行原理? 為什麼打開文件只會可以自動關閉?請說出原因
class Open:
    def __init__(self, name):
        self.name = name

    def __enter__(self):
        print('出現with語句,對象的__enter__被觸發,有返回值則賦值給as聲明的變數')
        # return self

    def __exit__(self, exc_type, exc_val, exc_tb):
        print('with中代碼塊執行完畢時執行我啊')
        print(exc_type) # 異常類型
        print(exc_val) # 異常值
        print(exc_tb) # 追溯信息
        return True # 如果你在這個方法裡面返回了True,with代碼塊中出現了異常,就相當於沒有出現異常

"""with它可以用在很多地方,但是,出現with語句後面的對象中得類必須要聲明__enter__和__exit__"""

# with Open('a.txt') as f:
#     print('=====>執行代碼塊')
#     print('=====>執行代碼塊')
#     print('=====>執行代碼塊')
#     print('=====>執行代碼塊')
#     print('=====>執行代碼塊')
#     # print(f,f.name)
"""如果with代碼塊中出現了異常,則with語句之後的代碼都不能正常執行"""
with Open('a.txt') as f:
    print('=====>執行代碼塊')
    raise AttributeError('***著火啦,救火啊***') # 拋出異常,主動報錯
print('0'*100) #------------------------------->不會執行

setattr 設置 ,delattr 刪除,getattr查看

點語法

__setattr__,__delattr__,__getattr__

class Foo:
    x=1
    def __init__(self,y):
        self.y=y

    """當你找的屬性不存在的時候,會觸發__getattr__,但是必須是點語法的時候才會"""
    def __getattr__(self, item):
        print('----> from getattr:你找的屬性不存在')


    def __setattr__(self, key, value):
        print('----> from setattr')
        # self.key=value # self.a=20
        # self.key=value #這就無限遞歸了,你好好想想
        self.__dict__[key]=value #應該使用它


    def __delattr__(self, item):
        print('----> from delattr')
        # del self.item #無限遞歸了
        self.__dict__.pop(item)

obj=Foo(10)
# obj.z
obj.a=20
print(obj.a)

del obj.a

setitem,getitem,delitem__

中括弧取值時

__setitem__,__getitem,__delitem__

class Foo:
    def __init__(self, name):
        self.name = name

    """當你通過中括弧獲取對象的屬性的時候,會自動觸發__getitem__"""
    def __getitem__(self, item):
        print('__getitem__')
        print(self.__dict__[item])

    def __setitem__(self, key, value):
        # key:age
        # value:18
        print('__setitem__')
        self.__dict__[key] = value
        #  self.__dict__['age'] = 18

    def __delitem__(self, key):
        print('del obj[key]時,我執行')
        self.__dict__.pop(key)
        pass

    # def __delattr__(self, item):
    #     print('del obj.key時,我執行')
    #     self.__dict__.pop(item)
obj=Foo('tom')
# print(obj.name)

# obj['name']
obj['age'] = 18
# obj.age=18
print(obj.age)

del obj['age']

call

class Foo:

    def __init__(self):
        pass
    #### 當對象加括弧的時候會觸發__call__的執行
    def __call__(self, *args, **kwargs):
        print('__call__',*args)


obj=Foo()
print(obj)#<__main__.Foo object at 0x000002CCFDE2BF70>
obj('qe')#__call__ qe

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 之前在開發一個管理頁面,功能有,編輯時只有一行可以編輯,刪除時彈出警告視窗,確認後才執行刪除。 ​ 代碼為Element-plus中的示例。 但是ElMessageBox一直被遮擋 代碼如下,均為Element-plus的示例,此外還有兩層router-view嵌套: <template> <el- ...
  • 在我們日常的網頁中,尤其是新聞類的網頁會遇到許多類似於這樣的樣式 多行甚至單行的文本隱藏+上省略號標題。 解決這一辦法,需要利用css的樣式進行改變 如下代碼的演示: 單行文本隱藏: 多行文本隱藏: 主要知識點: 1、單行文本隱藏省略:文本不能換行、超出部分隱藏、超出部分省略 2、多行文本隱藏省略: ...
  • 最近,在 Steam 玩一款老游戲(生化危機 4 重置版),其中,每當游戲轉場的過程中,都有這麼一個有趣的 Loading 動畫: 整個效果有點類似於日食效果,中間一圈黑色,向外散髮著太陽般的光芒。 本文,我們將嘗試使用 CSS,還原這個效果。 整個效果做出來,類似於如下兩個動畫效果這樣: 實現主體 ...
  • 本篇文章主要是使用 NestJs + Sequelize + MySQL 完成基礎運行, 帶大家瞭解 Node 服務端的基礎搭建,也可以順便看看 Java SpringBoot 項目的基礎結構,它倆真的非常相似,不信你去問服務端開發同學。 ...
  • 本文從系統建設的背景、設計細節、已支撐案例及適用業務場景多個層面進行詳細闡述。讀者可以關註文中所講的系統實踐過程,進而對結算領域系統設計能力提升,具有一定的參考價值。 ...
  • 今天我們來談一談TDD 和 BDD 兩項實踐。我們先來說說 TDD,也就是測試驅動開發(Test Drvien Development)。 TDD 的節奏 或許你已經迫不及待地要舉手了:“TDD 我知道,就是先寫測試,後寫代碼。”但真的是這樣嗎?嚴格地說,“先寫測試、後寫代碼”的做法叫測試先行開發( ...
  • C源程式需要經過預處理、編譯、彙編幾個階段,得到各自源文件對應的可重定位目標文件,可重定位目標文件就是各個源文件的二進位機器代碼,一般是.o格式。比如:util1.c、util2.c及main.c三個C源文件,經過預處理器、編譯器、彙編器的處理,就可以得到各自的目標文件util1.o,util2.o ...
  • 案例一 20萬的項目,已經花了六十萬了,客戶突然又新提要求做一套百度的搜索系統,我尿了,一頓冥思苦想,然後做了一個搜索頁面,把幾百張表的每個欄位都like一遍在搜索頁面輸入的查詢內容,一次搜索要半小時才出結果,再告訴客戶百度能秒出結果是因為他們有一套幾十億的超級電腦,咱只有一臺不到十個大不溜的服務 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...