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

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

如何判斷父類的函數(shù)是由子類的類方法或?qū)嵗椒ㄕ{(diào)用的?

如何判斷父類的函數(shù)是由子類的類方法或?qū)嵗椒ㄕ{(diào)用的?

ABOUTYOU 2022-10-25 15:54:02
例如:class TestParent(object):    # I need a function to be compatible with both classmethod and instance method.    @property    def log(cls, self=None):        if "it's called from a child classmethod":            return logging.root.getChild(cls.__class__.__module__ + '.' + cls.__class__.__name__)        if "it's called from a child object":            return logging.root.getChild(self.__class__.__module__ + '.' + self.__class__.__name__)class TestChild(TestParent):    @classmethod    def test(cls):        cls.logger.info('test')    def test2(self):        self.logger.info('test2')child = TestChild()child.test()child.test2()有什么辦法可以做到這一點(diǎn)?
查看完整描述

1 回答

?
鳳凰求蠱

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

您可以通過(guò)使用 astaticmethod而不是屬性、傳遞調(diào)用者的clsorself并測(cè)試它是否是類對(duì)象來(lái)執(zhí)行您想要的操作:


import logging


logging.basicConfig(level=logging.INFO)



class TestParent(object):

    # I need a function to be compatible with both classmethod and instance method.

    @staticmethod

    def logger(obj):

        if isinstance(obj, type):

            return logging.root.getChild(obj.__class__.__module__ + '.' + obj.__class__.__name__)

        else:

            return logging.root.getChild(obj.__class__.__module__ + '.' + obj.__class__.__name__)

輸出:


INFO:builtins.type:test

INFO:__main__.TestChild:test2

話雖如此,在 Python 中更常見(jiàn)的是為每個(gè)記錄器而不是每個(gè)類定義一個(gè)模塊。除非從每個(gè)類的記錄器中獲得真正的價(jià)值,否則我會(huì)在每個(gè)模塊中使用一個(gè)。


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

添加回答

舉報(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)