@Mkorpela দুর্দান্ত উত্তরে উন্নতি করা , এর একটি সংস্করণ এখানে
আরও সুনির্দিষ্ট চেক, নামকরণ এবং উত্থাপিত ত্রুটিযুক্ত বস্তু
def overrides(interface_class):
"""
Function override annotation.
Corollary to @abc.abstractmethod where the override is not of an
abstractmethod.
Modified from answer https://stackoverflow.com/a/8313042/471376
"""
def confirm_override(method):
if method.__name__ not in dir(interface_class):
raise NotImplementedError('function "%s" is an @override but that'
' function is not implemented in base'
' class %s'
% (method.__name__,
interface_class)
)
def func():
pass
attr = getattr(interface_class, method.__name__)
if type(attr) is not type(func):
raise NotImplementedError('function "%s" is an @override'
' but that is implemented as type %s'
' in base class %s, expected implemented'
' type %s'
% (method.__name__,
type(attr),
interface_class,
type(func))
)
return method
return confirm_override
বাস্তবে এটি দেখতে কেমন দেখাচ্ছে:
NotImplementedError
" বেস শ্রেণিতে প্রয়োগ করা হয়নি "
class A(object):
# ERROR: `a` is not a implemented!
pass
class B(A):
@overrides(A)
def a(self):
pass
আরও বর্ণনামূলক NotImplementedError
ত্রুটি ফলাফল
function "a" is an @override but that function is not implemented in base class <class '__main__.A'>
পূর্ণ স্ট্যাক
Traceback (most recent call last):
…
File "C:/Users/user1/project.py", line 135, in <module>
class B(A):
File "C:/Users/user1/project.py", line 136, in B
@overrides(A)
File "C:/Users/user1/project.py", line 110, in confirm_override
interface_class)
NotImplementedError: function "a" is an @override but that function is not implemented in base class <class '__main__.A'>
NotImplementedError
" প্রত্যাশিত বাস্তবায়িত প্রকার "
class A(object):
# ERROR: `a` is not a function!
a = ''
class B(A):
@overrides(A)
def a(self):
pass
আরও বর্ণনামূলক NotImplementedError
ত্রুটি ফলাফল
function "a" is an @override but that is implemented as type <class 'str'> in base class <class '__main__.A'>, expected implemented type <class 'function'>
পূর্ণ স্ট্যাক
Traceback (most recent call last):
…
File "C:/Users/user1/project.py", line 135, in <module>
class B(A):
File "C:/Users/user1/project.py", line 136, in B
@overrides(A)
File "C:/Users/user1/project.py", line 125, in confirm_override
type(func))
NotImplementedError: function "a" is an @override but that is implemented as type <class 'str'> in base class <class '__main__.A'>, expected implemented type <class 'function'>
@ এমকোরপেলা উত্তর সম্পর্কে দুর্দান্ত জিনিস হ'ল চেকটি কোনও আরম্ভের পর্যায়ে ঘটে। চেকটি "রান" করার দরকার নেই। পূর্ববর্তী উদাহরণগুলি উল্লেখ করে class B
কখনই আরম্ভ করা হয় না ( B()
) তবুও NotImplementedError
তবুও উত্থাপিত হবে। এর অর্থ overrides
ত্রুটিগুলি দ্রুত ধরা পড়ে।