找到 9301 篇文章 关于面向对象编程

如何在 Java 中捕获文件未找到异常?

karthikeya Boyini
更新于 2020年2月20日 06:58:29

314 次查看

在使用 FileInputStream、FileOutputStream 和 RandomAccessFile 类时,我们需要将文件的路径传递给它们的构造函数。如果指定路径中的文件不存在,则会引发 FileNotFoundException 异常。示例public class Sample {    public static void main(String args[]) throws Exception {       File file = new File("myFile");       FileInputStream fis = new FileInputStream(file);       System.out.println("Hello");    } }输出Exception in thread "main" java.io.FileNotFoundException: myFile (The system cannot find the file specified)       at java.io.FileInputStream.open(Native Method)       at java.io.FileInputStream.open(Unknown Source)       at java.io.FileInputStream.(Unknown Source) ... 阅读更多

如何在 Java 中捕获数组索引越界异常?

Swarali Sree
更新于 2020年2月20日 06:51:48

385 次查看

当您尝试访问数组中超出范围索引处的元素时,会引发 ArrayIndexOutOfBoundsException 异常。示例在线演示public class ArrayIndexOutOfBounds {    public static void main(String args[]) {       try {          int[] a = new int[]{1,2,3,4,5};          int x = 6;          a[10] = x;       } catch(ArrayIndexOutOfBoundsException ex) {          System.out.println("数组大小限制为 5 个元素");       }    } }输出数组大小限制为 5 个元素

如何在 Java 中捕获除以零异常?

Swarali Sree
更新于 2020年2月20日 06:50:45

1K+ 次查看

当您将一个数字除以零时,会抛出一个 ArithmeticException 异常。示例在线演示public class DividedByZero {    public static void main(String args[]) {       int a, b;       try {          a = 0;          b = 54/a;          System.out.println("hello");       } catch (ArithmeticException e) {          System.out.println("您不能将数字除以零");       }    } }输出您不能将数字除以零

finally 块在 Java 中总是执行吗?

Sai Subramanyam
更新于 2019年7月30日 22:30:20

329 次查看

finally 块位于 try 块或 catch 块之后。finally 块中的代码始终执行,无论是否发生异常。

在 Java 中,finally 块是否有一种情况不会执行?

Lakshmi Srinivas
更新于 2023年8月10日 13:52:43

1K+ 次查看

与 Java 异常处理相关的疑问在许多公司的面试以及考试中都很常见。面试官可能会问的一个问题是,在 Java 中,finally 块是否有一种情况不会执行。我们将尝试以尽可能简单的方式找到这个问题的答案。通常,finally 块的设计目的是无论 try-catch 块中是否抛出或处理异常,它都会执行。在 Java 中,finally 块是否有一种情况不会执行?在进入问题之前,有必要讨论... 阅读更多

throw 和 throws 关键字在 Java 中的区别是什么?

Sharon Christine
更新于 2020年2月20日 06:39:20

333 次查看

throw 关键字用于显式地抛出异常。示例public class Test {    public static void main(String[] args) {       throw new NullPointerException();    } }Exception in thread "main" java.lang.NullPointerException at a6.dateAndTime.Test.main(Test.java:5)throws 关键字在 Java 中用于推迟检查异常的处理。public class Test {    public static void main(String[] args)throws NullPointerException {       throw new NullPointerException();    } }

什么是 Java 中的 catch 块?

Swarali Sree
更新于 2020年2月25日 10:42:48

304 次查看

catch 语句涉及声明您尝试捕获的异常类型。如果 try 块中发生异常,则会检查 try 之后的 catch 块(或块)。如果发生的异常类型在 catch 块中列出,则异常将传递给 catch 块,就像参数传递给方法参数一样。示例import java.io.File; import java.io.FileInputStream; public class Test {    public static void main(String args[]) {       System.out.println("Hello");       try {          File file = new File("my_file");       ... 阅读更多

什么是 Java 中的 try 块?

Samual Sam
更新于 2020年2月25日 10:44:22

469 次查看

try/catch 块放置在可能生成异常的代码周围。try/catch 块内的代码称为受保护代码,使用 try/catch 的语法如下所示 –语法try {    // 受保护代码 } catch (ExceptionName e1) {    // catch 块 }容易发生异常的代码放在 try 块中。当 try 块内部引发异常时,JVM 不会终止程序,而是将异常详细信息存储在异常堆栈中,然后继续执行 catch 块。

什么是 Java 中的数字格式异常?

Sai Subramanyam
更新于 2019年7月30日 22:30:20

158 次查看

当您将字符串变量转换为不兼容的数字格式(整数格式)时,就会发生此异常。示例public class Test { public static void main(String[] args) { int data = Integer.parseInt("hello"); } }输出Exception in thread "main" java.lang.NumberFormatException: For input string: "hello" at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at a6.dateAndTime.Test.main(Test.java:5)

Java 中错误和异常的基类是什么?

Monica Mona
更新于 2020年2月25日 12:25:55

2K+ 次查看

所有异常类都是 java.lang.Exception 类的子类型。Exception 类是 Throwable 类的子类。除了 Exception 类之外,还有一个名为 Error 的子类,它派生自 Throwable 类。

广告