ฉันใช้วิธีการของตัวเองในการเรียกซูเปอร์อย่างปลอดภัยในสถานการณ์การรับมรดกหลายครั้ง (ฉันใส่รหัสทั้งหมด)
def safe_super(_class, _inst):
"""safe super call"""
try:
return getattr(super(_class, _inst), _inst.__fname__)
except:
return (lambda *x,**kx: None)
def with_name(function):
def wrap(self, *args, **kwargs):
self.__fname__ = function.__name__
return function(self, *args, **kwargs)
return wrap
การใช้งานตัวอย่าง:
class A(object):
def __init__():
super(A, self).__init__()
@with_name
def test(self):
print 'called from A\n'
safe_super(A, self)()
class B(object):
def __init__():
super(B, self).__init__()
@with_name
def test(self):
print 'called from B\n'
safe_super(B, self)()
class C(A, B):
def __init__():
super(C, self).__init__()
@with_name
def test(self):
print 'called from C\n'
safe_super(C, self)()
ทดสอบมัน:
a = C()
a.test()
เอาท์พุท:
called from C
called from A
called from B
ภายในแต่ละวิธีการตกแต่งที่ @with_name คุณสามารถเข้าถึงตัวเอง. _ fname__ เป็นชื่อฟังก์ชันปัจจุบัน
traceback
เท่านั้นไม่ได้ใช้ ไม่แม้แต่เวลาที่คำตอบและความคิดเห็นดูเหมือนจะกลับมา