When overriding a superclass method, you need to follow certain rules if the method throws an exception.
Should throw the same exception or a subtype
If a superclass method throws a certain exception, the method in the subclass should throw the same exception or its subtype.
Example
In the following example, the superclass's readFile() method throws an IOException, while the subclass's readFile() method throws a FileNotFoundException.
Since the FileNotFoundException exception is a subtype of IOException, the program can compile and execute without any errors.
import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Scanner; abstract class Super { public String readFile(String path) throws IOException { throw new IOException(); } } public class ExceptionsExample extends Super { @Override public String readFile(String path) throws FileNotFoundException { Scanner sc = new Scanner(new File("E://test//sample.txt")); String input; StringBuffer sb = new StringBuffer(); while (sc.hasNextLine()) { input = sc.nextLine(); sb.append(" "+input); } return sb.toString(); } public static void main(String args[]) { String path = "E://test//sample.txt"; ExceptionsExample obj = new ExceptionsExample(); try { System.out.println(obj.readFile(path)); }catch(FileNotFoundException e) { System.out.println("Make sure the specified file exists"); } } }
Output
Tutorials Point is an E-learning company that set out on its journey to provide knowledge to that class of readers that responds better to online content. With Tutorials Point, you can learn at your own pace, in your own space. After a successful journey of providing the best learning content at tutorialspoint.com, we created our subscription based premium product called Tutorix to provide Simply Easy Learning in the best personalized way for K-12 students, and aspirants of competitive exams like IIT/JEE and NEET.
Example
Similarly, if the subclass throws the same exception as the superclass, the program will compile and execute successfully.
import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Scanner; abstract class Super { public void sampleMethod()throws FileNotFoundException { System.out.println("Method of superclass"); } } public class ExceptionsExample extends Super { public void sampleMethod()throws FileNotFoundException { System.out.println("Method of Subclass"); } public static void main(String args[]) { ExceptionsExample obj = new ExceptionsExample(); obj.sampleMethod(); } }
Output
Method of Subclass
Superclass exceptions should not be thrown
If a superclass method throws an exception, the method in the subclass should not throw its superclass exception kind.
Example
In the following example, the superclass's readFile() method throws a FileNotFoundException exception, while the subclass's readFile() method throws an IOException exception, which is a superclass of FileNotFoundException. kind.
import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Scanner; abstract class Super { public String readFile(String path)throws FileNotFoundException { throw new FileNotFoundException(); } } public class ExceptionsExample extends Super { @Override public String readFile(String path)throws IOException { //method body ...... } }
Compile time error
While compiling, the above program gives the following output -
ExceptionsExample.java:13: error: readFile(String) in ExceptionsExample cannot override readFile(String) in Sup public String readFile(String path)throws IOException { ^ overridden method does not throw IOException 1 error
Does not throw any exception
If the parent class method throws throw certain exceptions, you can override it without throwing any exceptions.
Example
In the following example, the sampleMethod() method of the parent class throws a FileNotFoundException exception, while the sampleMethod() method of the subclass does not throw any exception at all. Nonetheless, the program compiles and executes without any errors.
import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Scanner; abstract class Super { public void sampleMethod()throws FileNotFoundException { System.out.println("Method of superclass"); } } public class ExceptionsExample extends Super { public void sampleMethod() { System.out.println("Method of Subclass"); } public static void main(String args[]) { ExceptionsExample obj = new ExceptionsExample(); obj.sampleMethod(); } }
Output
Method of Subclass
The above is the detailed content of What are the rules for method coverage and exception handling in Java?. For more information, please follow other related articles on the PHP Chinese website!

解决Java断言异常(AssertionError)的解决方案在Java开发中,断言是一种常用的调试工具。通过使用断言,我们可以在代码中插入一些条件,以确保程序在运行时满足预期的条件。然而,有时候我们可能会遇到Java断言异常(AssertionError),这意味着断言条件没有得到满足,导致程序抛出异常。出现断言异常的原因通常是设计时对代码的假设不正确或者

在声明中包含abstract关键字的类称为抽象类。抽象类可能包含也可能不包含抽象方法,即没有主体的方法(publicvoidget();)但是,如果一个类至少有一个抽象方法,则该类必须声明为抽象。如果一个类声明为抽象,则它不能被实例化。要使用抽象类,您必须从另一个类继承它,并提供其中抽象方法的实现。如果您继承抽象类,则您有为其中的所有抽象方法提供实现。示例本节为您提供了抽象类的示例。要创建抽象类,只需在类声明中的class关键字之前使用abstract关键字即可。/*Filename:Emplo

Golang的优点有很多,以前的文章中也有提到过,但也有很多槽点为Gopher所诟病,尤其是 错误处理。在说错误和异常之前,先要说两个概念:错误处理:错误是业务中的一部分,是可以预见的。异常处理:非业务的一部分,不可预见的。

C++中常见的代码复用问题解决方案在C++编程中,代码复用是一种重要的技术,可以提高开发效率和代码的可维护性。然而,常常会遇到一些常见的代码复用问题,例如重复的代码片段、复杂的继承关系等。本文将介绍几种解决这些问题的常用方法,并提供具体的代码示例。函数封装函数封装是一种常见的代码复用方法,通过将一段代码封装成一个函数,可以在其他地方多次调用,避免重复编写相同

如何解决C++开发中的代码层级关系问题开发复杂的C++程序时,一个常见的问题就是代码层级关系的管理。不正确的层级关系会导致代码变得难以阅读、维护和扩展。为了解决这个问题,我们可以采取以下几个策略。首先,我们可以使用合适的目录结构来组织代码文件。一个好的目录结构可以使代码文件能够更加有序地排列,方便我们在开发过程中快速定位或修改相关代码。通常,建议按照功能或模

如何解决Java中遇到的安全性问题导语:随着互联网的普及和发展,Java成为了最常用的程序开发语言之一。然而,由于其开放性和普及度,Java程序频繁受到黑客攻击。本文将介绍一些常见的Java安全性问题,并探讨如何解决这些问题,以保护我们的应用程序免受攻击。引言:在Java开发中,安全性问题主要包括数据泄漏、身份验证和授权、异常处理以及代码注入等方面。下面,我

如何在C++中进行面向对象的编程?面向对象编程(Object-OrientedProgramming,OOP)是一种十分常见且重要的软件开发范式。C++是一种多范型的编程语言,其中包含了对面向对象编程的支持。在C++中,通过类(class)和对象(object)的概念,我们可以方便地实现面向对象的编程。首先,我们需要定义一个类。类是一种自定义

PHP中如何处理算法错误?在PHP编程中,处理算法错误是一项非常重要的任务。当我们编写的算法出现错误时,如果不妥善处理,可能会导致程序崩溃或者产生不正确的结果。所以,本文将介绍一些常见的处理算法错误的方法,并提供具体的代码示例。异常处理在PHP中,可以使用异常处理机制来捕获和处理算法错误。在PHP中,有两个基础的异常类:Exception和Error。我们可


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
