您好,登錄后才能下訂單哦!
這篇文章主要介紹“python中的getter與setter怎么用”,在日常操作中,相信很多人在python中的getter與setter怎么用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”python中的getter與setter怎么用”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
在python可以直接結(jié)合java中的編寫習(xí)慣編寫getter和setter方法。下方是一個示例:
class DataBean: """bean類""" def __init__(self): """構(gòu)造方法""" self.username: str = "" self.password: str = "" def set_username(self, username: str): """設(shè)置用戶名""" self.username = username def set_password(self, password: str): """設(shè)置密碼""" self.password = password def get_username(self): """獲取用戶名""" return self.username def get_password(self): """"獲取密碼""" return self.password
這是結(jié)合java的習(xí)慣與python類的使用寫出的getter和setter結(jié)構(gòu),當(dāng)然也可以完全按照java中的寫法,參考下方示例:
class DataBean: """bean類""" # 用戶名 username: str = "" # 密碼 password: str = "" def set_username(self, username: str): """設(shè)置用戶名""" self.username = username def set_password(self, password: str): """設(shè)置密碼""" self.password = password def get_username(self): """獲取用戶名""" return self.username def get_password(self): """"獲取密碼""" return self.password
其實就是將構(gòu)造方法中通過self定義的變量提取出來,效果是一致的。
在python內(nèi)置的裝飾器中,@property和@XXX.setter是針對于getter和setter方法的不二之選。
當(dāng)一個方法(函數(shù))的最終目的是返回一個值時,可以@property裝飾該方法(因為java的使用習(xí)慣,我更想稱之為注解),這樣就可以達成getter方法。
當(dāng)在一個方法的上方使用XXX.setter裝飾時,代表可以直接通過類實例對象名稱.變量名為其變量賦值,其中XXX代表變量名同時也是方法(函數(shù))名稱,具體可以看下方示例:
class DataBean: """bean類""" # 替代setter方法 @username.setter def username(self, username: str): """設(shè)置用戶名""" self.username = username @password.setter def password(self, password: str): """設(shè)置密碼""" self.password = password # 替代getter方法 @property def username(self): """獲取用戶名""" return self.username @property def password(self): """"獲取密碼""" return self.password # 測試 data_bean = DataBean() # 直接賦值 date_bean.username = "123" print(data_bean.username)
到此,關(guān)于“python中的getter與setter怎么用”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。