try{ //todo }catch(Exception e){ //todo }finally{ //todo } 1.不管try,catch里面的代码快有无return,finally都会执行 2.如果try,catch里有return,finally也有return,最后以finally为准 3.如果try,catch里return的一个基本类型的变量,在finally里修改变量的值,返回结果不变,因为try,catch执行return时,返回的数据已经本压入栈中了 4.如果try,cat…