try...catch..finally例

2023-12-24 07:34:05

try…catch…finally例
public Integer add(Integer a, Integer b){
try {
System.out.println(“yyyy”);
return a + b;
} catch (Exception e) {
e.printStackTrace();
} finally {
System.out.println(“hello”);
}
return 0;
}

public static void main(String[] args) {
    SysUser user = new SysUser();
    Byte i = user.isDelete;
    System.out.println("i:"+i);
    Integer add = user.add(3, 4);
    System.out.println("和:"+add);
}

控制台显示:
i:null
yyyy
hello
和:7

文章来源:https://blog.csdn.net/friend18750230725/article/details/135171922
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。