第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

跨多個(gè)實(shí)例共享單個(gè)基礎(chǔ)對(duì)象

跨多個(gè)實(shí)例共享單個(gè)基礎(chǔ)對(duì)象

FFIVE 2023-06-06 14:47:29
在我的 API 設(shè)計(jì)中,我有這樣的東西:class APIConnection:    # sets up the session and only contains connection-related methods    def __init__(self):        self.session = requests.Session()    def api_call(self):        # do session-related stuffclass User(APIConnection):    def __init__(self, username, password):        super().__init__()        # do login stuff, get access token        # update inherited session with authorization headers        self.session.headers.update({"Access-Token": access_token})        self.profile = Profile(profile_data) # set up profile objectclass Profile:    def __init__(self, profile_data):        pass    # this is where I would like to get access to the session that User inherited from APIConnection    # so that I might call Profile-related functions like this through composition    def edit_profile(self):        self.api_call()    def remove_avatar(self):        self.api_call()# My endgoal is so the user can write stuff like:user = User("username", "password")user.profile.edit_profile()user.profile.remove_avatar()# which would only be possible if Profile could share the APIConnection object that User created我是 OO 編程的新手,想不出一種干凈的方法來做到這一點(diǎn)。我希望創(chuàng)建的Profile實(shí)例User也可以訪問繼承的實(shí)例,APIConnection而不必重新創(chuàng)建它或做任何奇怪的事情。
查看完整描述

1 回答

?
蕭十郎

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超13個(gè)贊

是的,在靜態(tài)語言中,您可以讓您的Profiletake 引用 anAPIConnection并且編譯器將強(qiáng)制執(zhí)行該接口。


使用 python,您可以進(jìn)行單元測(cè)試,該測(cè)試實(shí)際通過APIConnection,然后User將捕獲對(duì)方法的任何調(diào)用。


事實(shí)上你可以這樣做:


class User(APIConnection):

    def __init__(self, username, password):

        super().__init__()

        # do login stuff, get access token

        # update inherited session with authorization headers

        self.session.headers.update({"Access-Token": access_token})


        self.profile = Profile(self, profile_data) # set up profile object


class Profile:

    def __init__(self, api, profile_data):

        self.api = api


    def edit_profile(self):

        self.api.api_call()


    def remove_avatar(self):

        self.api.api_call()


查看完整回答
反對(duì) 回復(fù) 2023-06-06
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)