码迷,mamicode.com
首页 > 编程语言 > 详细

python中with用法理解

时间:2020-06-30 20:23:48      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:实验   type   tin   程序   over   pre   err   object   生成   

with 用法理解

Overview

with 与with之后的object一起,起到了抛出异常和单独生成一个空间让代码在空间里运行的效果。

实验代码

class A:
    def __init__(self):
        self.a = 0

    def __enter__(self):
        print(‘enter‘)

    def __exit__(self, exc_type, exc_val, exc_tb):
        print(‘exit‘)


if __name__ == ‘__main__‘:

    a = A()
    with a:
        print(‘first step‘)
        print(1/0)
        print(‘last setp‘)
    print(‘continue running‘)
    print(‘continue running‘)
    print(‘continue running‘)
    print(‘continue running‘)

上述代码输出结果为

enter
first step
exit
ZeroDivisionError: division by zero

代码理解
根据上述代码的测试结果可以看出:

  1. with语句先运行,with之后对象的__enter__()方法
  2. 然后运行with空间的代码
    1.1. 当with空间代码出错后,会直接运行__exit__()方法,然后抛出异常
    1.2 当with空间代码没有错误时,程序按顺序__enter()__>> 逻辑语句>>exit()>>之后的代码继续运行

python中with用法理解

标签:实验   type   tin   程序   over   pre   err   object   生成   

原文地址:https://www.cnblogs.com/LexiCalibur/p/13215603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!