try catch finally

package youxia;

public class ShaoNian {
	public String testException() {
		try {
			throw new RuntimeException("hehe");
		} catch (Exception e) {
			return "catch";
		}finally {
			return "finally";
		}
	}
	
	public static void main(String[] args) {
		ShaoNian shaoNian=new ShaoNian();
		String excp=shaoNian.testException();
		System.out.println(excp);
	}
}

Output result:

finally

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325478941&siteId=291194637