27. Try, Catch, Finally and Throw

/* The finally block always executed when the try block exits.
 * This ensures that the finally block is executed even if an unexpected exception occurs.
 */
public class FinallyBlock {
	public static int retInt() {
		int a = 100;
		try {
			return a;
		}catch(Exception e) {
			System.out.println("catch called");
			System.out.println(e);
			return a;
		}finally {
			//a = 5000;
			System.out.println("finally called");
			//return a;
		}

	}
	public static void main(String[] args) {
		System.out.println(retInt());
	}

}

finally
Sometimes we have an important code in our program that needs to be executed irrespective of whether or not the exception is thrown. This code is placed in a special block starting with the “Finally” keyword. The Finally block follows the Try-catch block.

public class Main{  
   static void validate_Age(int age){  
     //if specified age is < 18, throw ArithmeticException
     if(age<18)  
      throw new ArithmeticException("Not eligible to vote and drive!!");  
     else   //print the message
      System.out.println("Eligible to vote and drive!!");  
   }  
   public static void main(String args[]){  
      //call validate_Age method
      validate_Age(10);  
      System.out.println("rest of the code...");  
  }  
}  

throw
Java provides a keyword “throw” using which we can explicitly throw the exceptions in the code. For example, if we are checking arithmetic operations and want to raise some exceptions after checking operands we can do so using the ‘throw’ keyword. Using the throw keyword, we can throw the checked or unchecked exceptions. The throw keyword is also used to throw custom exceptions.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值