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

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

如何引用 __init__ 超類中定義的函數(shù)

如何引用 __init__ 超類中定義的函數(shù)

尚方寶劍之說 2023-06-20 15:15:03
def convert(dictionary我的類中有一個(gè)輔助函數(shù) ( )__init__來協(xié)助配置設(shè)置。定義如下:class Configuration:    def __init__(self, config_file=None, config=None):        if config_file is not None:            with open(config_file) as in_file:                self._config = yaml.load(in_file, Loader=yaml.FullLoader)        elif config is not None:            self._config = config        else:            raise ValueError("Could not create configuration. Must pass either location of config file or valid "                             "config.")        def convert(dictionary):            return namedtuple('Config', dictionary.keys())(**dictionary)這使我可以按如下方式撥打電話__init__:        self.input = convert(self._config["input"])        self.output = convert(self._config["output"])        self.build = convert(self._config["build_catalog"])由于我要設(shè)置多個(gè)配置,因此我想從他的類中繼承如下:class BuildConfiguration(Configuration):    def __init__(self, config_file=None, config=None):        super().__init__(config_file, config)        self.input = convert(self._config["input"])        self.output = convert(self._config["output"])        self.build = convert(self._config["build_catalog"])convert但是,我無法從父類訪問。我也試過這個(gè):self.input = super().__init__.convert(self._config["input"])這似乎也行不通。所以問題是如何訪問super().__init__子類中定義的函數(shù)?
查看完整描述

1 回答

?
牧羊人nacy

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

你不能。每次調(diào)用都會(huì)創(chuàng)建一個(gè)新函數(shù),__init__然后將其丟棄,它不存在于函數(shù)之外。請(qǐng)注意,這也適用于由創(chuàng)建的類namedtuple('Config', dictionary.keys())(**dictionary)。繼續(xù)創(chuàng)建所有這些不必要的類確實(shí)不好,這完全違背了namedtuple創(chuàng)建內(nèi)存高效記錄類型的目的。在這里,每個(gè)實(shí)例都有自己的類!


以下是您應(yīng)該如何定義它:


Config = namedtuple('Config', "foo bar baz")


def convert(dictionary): # is this really necessary?

    return Config(**dictionary) 


class Configuration:


    def __init__(self, config_file=None, config=None):


        if config_file is not None:

            with open(config_file) as in_file:

                self._config = yaml.load(in_file, Loader=yaml.FullLoader)

        elif config is not None:

            self._config = config

        else:

            raise ValueError("Could not create configuration. Must pass either location of config file or valid "

                             "config.")


        self.input = convert(self._config["input"])

        self.output = convert(self._config["output"])

        self.build = convert(self._config["build_catalog"])

雖然在這一點(diǎn)上,使用它似乎更干凈


Config(**self._config["input"])

etc 而不是 helper convert。


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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