• 技术文章 >Python技术 >Python基础教程

    python with语句的工作原理

    小妮浅浅小妮浅浅2021-06-02 13:47:06原创1910

    1、说明

    (1)上下文管理器对象必须有内置操作符__enter__和__exit__方法。

    (2)在with句子中返回对象管理器并分配变量时,将召回__enter__方法。

    (3)执行嵌套句,即上述相关代码。

    (4)如果出现异常信息,将回调__exit__的方法,同时携带type,value,traceback三个参数(通过sys.exc_info获得)

    (5)在正常执行完成后,还召回__exit__的方法。

    2、实例

    # exception.pyclass WithContextObject:
        def message(self,args):
            print(args)            def __enter__(self):
            print("execute enter method ..")                return self            def __exit__(self, exc_type, exc_val, exc_tb):
            if exc_type is None:
                print("execute normally...")                else:
                print("raise exception ...")                        return Falsedef test_with():
        with WithContextObject() as context:
            context.message("take message")         if __name__ == '__main__':
        test_with()>>> python exception.py

    以上就是python with语句的工作原理,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python with语句
    上一篇:python中try语句的工作过程 下一篇:python Gunicorn是什么

    相关文章推荐

    • python伪私有属性的理解• python方法的绑定和未绑定• python中__setattr__的属性设置• python打印字符串的方法• python对象持久化的方法• python异常在程序的作用• python中try语句的工作过程

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网