学习python或者其他有异常控制的编程语 言, 大家很有可能说try except finally(try catch finally)的执行很简单,无非就是有异常的话执行except, finally无论是否有异常都会执行, 大致上原则是这样, 但是如果涉及到更加详细的复杂的路径,加上return 语句,就没有那么简单了。

1. 没有return 语句的情况

print 'this is a test of code path in try...except...else...finally'
print '************************************************************' def exceptTest():
try:
print 'doing some work, and maybe exception will be raised'
raise IndexError('index error')
#print 'after exception raise'
#return 0 except KeyError, e:
print 'in KeyError except'
print e
#return 1
except IndexError, e:
print 'in IndexError except'
print e
#return 2
except ZeroDivisionError, e:
print 'in ZeroDivisionError'
print e
#return 3
else:
print 'no exception'
#return 4
finally:
print 'in finally'
#return 5 resultCode = exceptTest()
print resultCode
上面的代码是一直要使用的代码,只不过暂时不用的代码被comment了。

有异常发生,并且捕获异常,最后在finally进行处理,上面代码的输出:

this is a test of code path in try...except...else...finally
************************************************************
doing some work, and maybe exception will be raised
in IndexError except
index error
in finally
None

然后我们逐渐给上面代码各个情况添加return 语句, 查看添加return 语句后的代码执行效果。

2. 添加return 语句的情况

print 'this is a test of code path in try...except...else...finally'
print '************************************************************' def exceptTest():
try:
print 'doing some work, and maybe exception will be raised'
raise IndexError('index error')
print 'after exception raise'
return 0 except KeyError, e:
print 'in KeyError except'
print e
return 1
except IndexError, e:
print 'in IndexError except'
print e
return 2
except ZeroDivisionError, e:
print 'in ZeroDivisionError'
print e
return 3
else:
print 'no exception'
return 4
finally:
print 'in finally'
return 5 resultCode = exceptTest()
print resultCode

这个时候所有的分支都存在return 语句,并且会引发异常, 看一下输出:

this is a test of code path in try...except...else...finally
************************************************************
doing some work, and maybe exception will be raised
in IndexError except
index error
in finally
5

异常发生后,raise语句以后的不再执行,然后到了捕获异常语句, 但是捕获异常模块有个return , 是不是这个时候就不再继续执行直接返回呢?但是这是跟 finally语句必然执行是相冲突的, 可以在结果中看到finally实际上执行了,并且返回值是5,在 finally de 的返回值。

然后,我们在看看把finally 的返回值注释掉,看看返回值是多少?

代码如下:

print 'this is a test of code path in try...except...else...finally'
print '************************************************************' def exceptTest():
try:
print 'doing some work, and maybe exception will be raised'
raise IndexError('index error')
print 'after exception raise'
return 0 except KeyError, e:
print 'in KeyError except'
print e
return 1
except IndexError, e:
print 'in IndexError except'
print e
return 2
except ZeroDivisionError, e:
print 'in ZeroDivisionError'
print e
return 3
else:
print 'no exception'
return 4
finally:
print 'in finally'
#return 5 resultCode = exceptTest()
print resultCode

这个时候的程序输出:

this is a test of code path in try...except...else...finally
************************************************************
doing some work, and maybe exception will be raised
in IndexError except
index error
in finally
2

返回值变为2, 这个时候有点疑惑了, 先不用解释问题,我们继续看其他的情况。

3. 没有异常发生且try语句块没有return

代码如下:

print 'this is a test of code path in try...except...else...finally'
print '************************************************************' def exceptTest():
try:
print 'doing some work, and maybe exception will be raised'
#raise IndexError('index error')
print 'after exception raise'
#return 0 except KeyError, e:
print 'in KeyError except'
print e
return 1
except IndexError, e:
print 'in IndexError except'
print e
return 2
except ZeroDivisionError, e:
print 'in ZeroDivisionError'
print e
return 3
else:
print 'no exception'
return 4
finally:
print 'in finally'
return 5 resultCode = exceptTest()
print resultCode

这个时候的代码输出:

this is a test of code path in try...except...else...finally
************************************************************
doing some work, and maybe exception will be raised
after exception raise
no exception
in finally
5

这里验证了如果没有异常那么else语句是执行的,并且finally语句执行,然后返回finally语句的return 5

但是,当try语句块里存在return语句是什么情况呢?

4. 没有异常发生且try语句块 存在return语句

print 'this is a test of code path in try...except...else...finally'
print '************************************************************' def exceptTest():
try:
print 'doing some work, and maybe exception will be raised'
#raise IndexError('index error')
print 'after exception raise'
return 0 except KeyError, e:
print 'in KeyError except'
print e
return 1
except IndexError, e:
print 'in IndexError except'
print e
return 2
except ZeroDivisionError, e:
print 'in ZeroDivisionError'
print e
return 3
else:
print 'no exception'
return 4
finally:
print 'in finally'
return 5 resultCode = exceptTest()
print resultCode

执行结果:

this is a test of code path in try...except...else...finally
************************************************************
doing some work, and maybe exception will be raised
after exception raise
in finally
5

这里else没有执行,和我们对于书本知识有冲突了, finally语句执行并返回5.

分析: 这里因为没有发生异常, 所以会执行到try块中的return 语句,但是finally又必须执行,所以执行try中return 之前去执行了finally语句,并且可以认为,finally语句修改了最后返回的值,将try中的返回值修改为5并最终返回,所以else语句并没有 得到执行。

5. 有异常发生并且finally 没有return 语句

print 'this is a test of code path in try...except...else...finally'
print '************************************************************' def exceptTest():
try:
print 'doing some work, and maybe exception will be raised'
raise IndexError('index error')
print 'after exception raise'
return 0 except KeyError, e:
print 'in KeyError except'
print e
return 1
except IndexError, e:
print 'in IndexError except'
print e
return 2
except ZeroDivisionError, e:
print 'in ZeroDivisionError'
print e
return 3
else:
print 'no exception'
return 4
finally:
print 'in finally'
#return 5 resultCode = exceptTest()
print resultCode

执行结果:

this is a test of code path in try...except...else...finally
************************************************************
doing some work, and maybe exception will be raised
in IndexError except
index error
in finally
2

因为有异常发生,所以try中的return语句肯定是执行不到的,然后在捕获到的except中进行执行,并且except中存在return 语句,那么是不是就直接返回? 因为finally 语句是必须要执行的,所以这里的return语句需要先暂且放下,进入finally进行执行,然后finnaly执行完以后再返回到 except中进行执行。

看到这里,我们貌似找到了一些规律

1. 如果没有异常发生, try中有return 语句, 这个时候else块中的代码是没有办法执行到的, 但是finally语句中如果有return 语句会修改最终的返回值, 我个人理解的是try中return 语句先将要返回的值放在某个 CPU寄存器,然后运行finally语句的时候修改了这个寄存器的值,最后在返回到try中的return语句返回修改后的值。

2. 如果没有异常发生, try中没有return语句,那么else块的代码是执行的,但是如果else中有return, 那么也要先执行finally的代码, 返回值的修改与上面一条一致。

3. 如果有异常发生,try中的return语句肯定是执行不到, 在捕获异常的 except语句中,如果存在return语句,那么也要先执行finally的代码,finally里面的代码会修改最终的返回值,然后在从 except 块的retrun 语句返回最终修改的返回值, 和第一条一致。

转自:http://www.2cto.com/kf/201405/304975.html

Python-try except else finally有return时执行顺序探究的更多相关文章

  1. Python异常捕捉try except else finally有return时执行顺序探究

    转载自 https://www.cnblogs.com/JohnABC/p/4065437.html 学习python或者其他有异常控制的编程语 言, 大家很有可能说try except finall ...

  2. 我敢说你不一定完全理解try 块,catch块,finally 块中return的执行顺序

    大家好,今天我们来讲一个笔试和面试偶尔都会问到的问题,并且在工作中不知道原理,也会造成滥用. 大家可能都知道,try 块用来捕获异常,catch块是处理try块捕获的异常,finally 块是用来关闭 ...

  3. Python面试题之多个装饰器执行顺序

    疑问 大部分涉及多个装饰器装饰的函数调用顺序时都会说明它们是自上而下的,比如下面这个例子: def decorator_a(func): print 'Get in decorator_a' def ...

  4. return & finally 执行顺序 这是我读到的最合理的解释

    新词:return [expression]  栈顶元素 局部变量的快照 java方法是在栈幀中执行,栈幀是线程私有栈的单位,执行方法的线程会为每一个方法分配一小块栈空间来作为该方法执行时的内存空间, ...

  5. python中 try、except、finally 的执行顺序

        def test1(): try: print('to do stuff') raise Exception('hehe') print('to return in try') return ...

  6. JAVA中try、catch、finally带return的执行顺序总结

    异常处理中,try.catch.finally的执行顺序,大家都知道是按顺序执行的.即,如果try中没有异常,则顺序为try→finally,如果try中有异常,则顺序为try→catch→final ...

  7. 理清Java中try-catch-finally带return的执行顺序

    前言:try-catch-finally带return和异常时,它们之间执行顺序问题是留下来的一个小疑问,今天搞清楚它们 第一种情况:无异常 //1.try-catch-finally都带有retur ...

  8. java中的try-catch-finally中的return的执行顺序

    在这里看到了try catch finally块中含有return语句时程序执行的几种情况,但其实总结的并不全,而且分析的比较含糊.但有一点是可以肯定的,finally块中的内容会先于try中的ret ...

  9. python中 try、except、finally 的执行顺序(转)

    def test1(): try: print('to do stuff') raise Exception('hehe') print('to return in try') return 'try ...

随机推荐

  1. hdu 5210 delete 水题

    Delete Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5210 D ...

  2. leetcode76. Minimum Window Substring

    leetcode76. Minimum Window Substring 题意: 给定字符串S和字符串T,找到S中的最小窗口,其中将包含复杂度O(n)中T中的所有字符. 例如, S ="AD ...

  3. python gensim的第一次试用

    参考于 http://blog.csdn.net/xiaoquantouer/article/details/53583980 有一个地方很重要,一定要安装anaconda,安装库简直不要太方便. 先 ...

  4. XmlReader/XmlWriter 类

    XmlReader用于读取Xml文件,XmlWriter用于将数据写到Xml文件.其实,在印象当中,XML很多的操作类都支持直接Save.Read也支持接受XmlReader与XmlWriter类的示 ...

  5. redis cluster 设置密码做集群时gem下client.rb文件修改

    redis节点有设置密码,然后在创建集群的时候没有设置密码的命令 ./redis-trib.rb create --replicas 1 127.0.0.1:6381 127.0.0.1:6382 1 ...

  6. ASP.NET Core 1.0 基础之配置

    来源https://docs.asp.net/en/latest/fundamentals/configuration.html ASP.NET Core 1.0支持不同的配置选项.应用配置数据可以是 ...

  7. SharePoint 2013 App 示例之图片墙

    应用程序实质上是 Web 应用程序.如果您知道如何生成 Web 应用程序,则您就知道如何生成 SharePoint 相关应用程序.您可以使用任何语言,如 HTML.JavaScript.PHP 或 . ...

  8. 简单的后台管理系统vue-cli3.0+element-ui

    前段时间在研究一个分发系统,发现vue-cli+element-ui好像是挺不错的,然后自己根据那个分发系统尝试搭建了一下 1.首先安装vue和vue-cli // 全局安装vue npm insta ...

  9. Eclipse中安装Maven插件 M2eclipse

    下面是官网的说明,基本上的意思下面有图片说明. To install m2eclipse, use the following Eclipse update site to install the c ...

  10. 解析Java的JNI编程中的对象引用与内存泄漏问题

    JNI,Java Native Interface,是 native code 的编程接口.JNI 使 Java 代码程序可以与 native code 交互——在 Java 程序中调用 native ...