当前位置:   article > 正文

Android java基础_异常

Android java基础_异常

一.异常的概念

在Java中,异常(Exception)是指程序执行过程中可能出现的不正常情况或错误。它是一个事件,它会干扰程序的正常执行流程,并可能导致程序出现错误或崩溃。

异常在Java中是以对象的形式表示的,这些对象是从java.lang.Throwable类或其子类派生而来。Throwable是异常类层次结构的根类,它有两个主要的子类:java.lang.Exception和java.lang.Error。

Exception(异常):java.lang.Exception是表示可检查异常的基类。可检查异常是指在编译时需要显式处理的异常。Exception类及其子类用于表示程序运行过程中可能出现的外部条件、错误或其他可恢复的情况。例如,文件未找到、网络连接中断、输入格式错误等。开发人员需要通过捕获或声明这些异常来确保在程序中进行适当的异常处理。

Error(错误):java.lang.Error是表示严重问题或系统级错误的基类。错误是指那些程序通常无法处理或恢复的情况,例如内存溢出、堆栈溢出、虚拟机错误等。与异常不同,错误不需要在程序中显式处理,因为它们通常表示了无法解决的问题。

异常在Java中通过抛出(throw)和捕获(catch)的方式进行处理。当程序执行到可能引发异常的代码时,可以使用throw语句手动抛出异常对象。然后,可以使用try-catch语句块来捕获异常,并在catch块中提供相应的异常处理逻辑。在catch块中,可以根据异常的类型执行适当的操作,如日志记录、错误报告或异常处理。如果异常没有在当前方法中被捕获处理,它将继续向上级调用栈传播,直到找到合适的异常处理代码或导致程序终止。

二.未进行异常处理

未进行异常处理的程序:

  1. /* java Div 6 2
  2. * 6/2=3
  3. */
  4. public class Div {
  5. public static void main(String args[]) {
  6. int m = Integer.parseInt(args[0]);
  7. int n = Integer.parseInt(args[1]);
  8. System.out.println("Begin of div");
  9. int r = div(m, n);
  10. System.out.println("End of div");
  11. System.out.println(m+"/"+n+"="+r);
  12. }
  13. public static int div(int m, int n) {
  14. int r = m / n;
  15. return r;
  16. }
  17. }

没有进行异常处理,编译运行结果: 程序退出

  1. root@ubuntu:/home/topeet/guyilian# javac Div.java
  2. root@ubuntu:/home/topeet/guyilian# java Div 6 3
  3. Begin of div
  4. End of div
  5. 6/3=2
  6. root@ubuntu:/home/topeet/guyilian# java Div 6 0
  7. Begin of div
  8. Exception in thread "main" java.lang.ArithmeticException: / by zero
  9. at Div.div(Div.java:22)
  10. at Div.main(Div.java:14)
  11. root@ubuntu:/home/topeet/guyilian#

三.异常处理

使用try-catch语句进行异常处理:

  1. /* java Div 6 2
  2. * 6/2=3
  3. */
  4. public class Div2 {
  5. public static void main(String args[]) {
  6. int m = Integer.parseInt(args[0]);
  7. int n = Integer.parseInt(args[1]);
  8. System.out.println("Begin of div");
  9. int r = div(m, n);
  10. System.out.println("End of div");
  11. System.out.println(m+"/"+n+"="+r);
  12. }
  13. public static int div(int m, int n) {
  14. int r = 0;
  15. try {
  16. r = m / n;
  17. } catch (ArithmeticException e) {
  18. System.out.println(e);
  19. } finally {
  20. System.out.println("this is finally of div");
  21. }
  22. return r;
  23. }
  24. }
  1. root@ubuntu:/home/topeet/guyilian# javac Div2.java
  2. root@ubuntu:/home/topeet/guyilian# java Div2 6 3
  3. Begin of div
  4. this is finally of div
  5. End of div
  6. 6/3=2
  7. root@ubuntu:/home/topeet/guyilian# java Div2 6 0
  8. Begin of div
  9. java.lang.ArithmeticException: / by zero
  10. this is finally of div
  11. End of div
  12. 6/0=0

使用抛出(throw)处理异常:

  1. /* java Div 6 2
  2. * 6/2=3
  3. */
  4. public class Div4 {
  5. public static void main(String args[]) {
  6. int m = Integer.parseInt(args[0]);
  7. int n = Integer.parseInt(args[1]);
  8. int r = 0;
  9. System.out.println("Begin of div");
  10. try {
  11. r = div(m, n);
  12. } catch (ArithmeticException e) {
  13. System.out.println(e);
  14. }
  15. System.out.println("End of div");
  16. System.out.println(m+"/"+n+"="+r);
  17. }
  18. public static int div(int m, int n) throws ArithmeticException {
  19. int r = 0;
  20. r = m / n;
  21. return r;
  22. }
  23. }

运行结果: 

  1. root@ubuntu:/home/topeet/guyilian# javac Div4.java
  2. root@ubuntu:/home/topeet/guyilian# java Div4 6 3
  3. Begin of div
  4. End of div
  5. 6/3=2
  6. root@ubuntu:/home/topeet/guyilian# java Div4 6 0
  7. Begin of div
  8. java.lang.ArithmeticException: / by zero
  9. End of div
  10. 6/0=0

可以有多个catch语句捕获不同的异常:

  1. /* java Div 6 2
  2. * 6/2=3
  3. */
  4. public class Div7 {
  5. public static void main(String args[]) {
  6. int m = 0;
  7. int n = 0;
  8. int r = 0;
  9. System.out.println("Begin of div");
  10. try {
  11. m = Integer.parseInt(args[0]);
  12. n = Integer.parseInt(args[1]);
  13. r = div(m, n);
  14. } catch (ArithmeticException e) {
  15. System.out.println("main :"+e);
  16. } catch (NumberFormatException e) {
  17. System.out.println("main :"+e);
  18. } catch (RuntimeException e) {
  19. System.out.println("main :"+e);
  20. }
  21. System.out.println("End of div");
  22. System.out.println(m+"/"+n+"="+r);
  23. }
  24. public static int div(int m, int n) throws ArithmeticException {
  25. int r = 0;
  26. try {
  27. r = m / n;
  28. } catch (ArithmeticException e) {
  29. System.out.println("div :"+e);
  30. throw e;
  31. }
  32. return r;
  33. }
  34. }

运行: 

  1. root@ubuntu:/home/topeet/guyilian# javac Div7.java
  2. root@ubuntu:/home/topeet/guyilian# java Div7 6 2
  3. Begin of div
  4. End of div
  5. 6/2=3
  6. root@ubuntu:/home/topeet/guyilian# java Div7 6 0
  7. Begin of div
  8. div :java.lang.ArithmeticException: / by zero
  9. main :java.lang.ArithmeticException: / by zero
  10. End of div
  11. 6/0=0

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/153104
推荐阅读
相关标签
  

闽ICP备14008679号