ExceptionTest.java 399 B

1234567891011121314151617181920
  1. package com.sf.javase.day11.exception;
  2. public class ExceptionTest {
  3. public static void main(String[] args) {
  4. int result = test();
  5. System.out.println(result); //
  6. }
  7. public static int test(){
  8. int i = 100;
  9. int c = 0;
  10. try {
  11. c =i+1;
  12. return c;
  13. } finally {
  14. // ci+1 =;
  15. return ++c;
  16. }
  17. }
  18. }