Python编程中NotImplementedError的使用

Posted 薏米*

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python编程中NotImplementedError的使用相关的知识,希望对你有一定的参考价值。

 Python编程中raise可以实现报出错误的功能,而报错的条件可以由程序员自己去定制。在面向对象编程中,可以先预留一个方法接口不实现,在其子类中实现。如果要求其子类一定要实现,不实现的时候会导致问题,那么采用raise的方式就很好。而此时产生的问题分类是NotImplementedError

       写一段代码如下:

class ClassDemo:

       def test_demo(self):

                     raiseNotImplementedError("my test: not implemented!")

 

classChildClass(ClassDemo):

       pass

 

inst =ChildClass()

inst.test_demo()

       程序运行结果:

E:1_workspace2_programme_language3_pythonOOP2017810>pythonerror_demo.py

Traceback (mostrecent call last):

  File "error_demo.py", line 9, in<module>

    inst.test_demo()

  File "error_demo.py", line 3, intest_demo

    raise NotImplementedError("my test:not implemented!")

NotImplementedError:my test: not implemented!

       从上面的运行结果可以看出,程序识别到了这个方法并没有在子类中实现却被调用了。从代码报错的行数来看,只有这个子类的实例化对象调用相应的方法的时候才会报错。这样的推测结论也很容易通过代码修改测试得到验证,此处不再验证。

       进一步修改代码:

class ClassDemo:

       def test_demo(self):

                     raiseNotImplementedError("my test: not implemented!")

 

classChildClass(ClassDemo):

       def test_demo(self):

              print("OKOKOOK!")

 

inst =ChildClass()

inst.test_demo()

       在新的代码中,子类中实现了对test_demo方法的设计。程序的运行结果如下:

E:1_workspace2_programme_language3_pythonOOP2017810>pythonerror_demo.py

OKOKOOK!

       从程序的执行结果可以看出,只要相应的方法接口进行了实现,在执行的时候未实施的错误便不会报出。

 

转载:https://blog.csdn.net/grey_csdn/article/details/77074707

以上是关于Python编程中NotImplementedError的使用的主要内容,如果未能解决你的问题,请参考以下文章

求一道python编程题

记一次面试过程中的Python编程题

记一次面试过程中的Python编程题

Python高级编程和异步IO并发编程

Python编程中NotImplementedError的使用

如何安装Python 3中,并设置本地编程环境在CentOS 7