예외는 Java에서 코드를 실행하는 동안 오류가 발생할 때 발생하는 예외입니다. Java의 RuntimeException은 Java 프로그래밍 언어의 모든 예외의 상위 클래스라고 불리는 클래스로, 프로그램이나 응용 프로그램이 실행되는 동안 충돌하거나 중단됩니다. 하지만 다른 예외와 비교하면 이러한 예외는 다르며 다른 예외처럼 코드에 지정하여 잡을 수 없습니다.
Object -> 순서로 Exception의 상위 클래스에 속합니다. 던질 수 있는 -> 예외 ->런타임예외. 따라서 JVM(Java Virtual Machine)의 일반 작업을 실행하는 동안 발생할 수 있는 모든 예외의 슈퍼클래스라고 할 수 있습니다. 이 RuntimeException과 그 하위 클래스는 "확인되지 않은 예외"라는 예외 클래스에 속합니다. 이는 생성자 또는 메소드 절에 지정할 수 없으며 지정할 필요도 없습니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
아래는 RuntimeException의 생성자입니다:
1. RuntimeException (): 자세한 메시지가 null인 새로운 런타임 예외가 발생합니다.
구문:
public RuntimeException()
여기서 원인은 초기화되지 않으며 Throwable.initCause 클래스(java.lang.Throwable)를 호출하여 수행할 수 있습니다.
2. RuntimeException(String msg): 이 역시 새로운 런타임 예외를 발생시키지만 Java 코드에서 제공한 정의된 세부 메시지가 있습니다.
구문:
public RuntimeException (String msg)
위 함수와 동일하게 기본적으로 원인은 초기화되지 않으며, Throwable.initCause(java.lang.Throwable)를 호출해도 마찬가지입니다. 여기에 있는 메시지는 나중에 Throwable.getMessage() 메소드를 통해 검색하기 위해 저장되는 세부 메시지입니다.
3. RuntimeException(String msg, Throwable cause): 정의된 오류 메시지와 원인이 포함된 새로운 런타임 예외가 발생합니다.
구문:
public RuntimeException (String message, Throwable cause)
여기에 있는 메시지는 자동으로 포함되지 않으며 명시적으로 지정해야 합니다. 여기서는 Throwable.getCause() 함수에서 원인을 가져오는데, 여기서는 null 값이 허용되는데 이는 원인이 존재하지 않거나 알 수 없음을 상징합니다.
4. RuntimeException(String msg, Throwable cause, booleanenableSupp, booleanwritableStack): 이는 자세히 설명된 오류 메시지, 특정 원인, 억제가 활성화 또는 비활성화되었는지 여부를 나타내는 활성화Supp 및 writableStack이 포함된 새로운 런타임 예외를 제공합니다. 활성화 또는 비활성화된 경우 스택 추적.
구문:
protected RuntimeException (String message, Throwable cause, booleanenableSuppression, booleanwritableStackTrace)
이는 정의된 원인과 지정된 세부 메시지, 원인, 억제 활성화 여부, 쓰기 가능한 스택 추적 활성화 여부와 함께 새로운 런타임 예외를 제공합니다. 여기에 있는 메시지는 우리가 표시하는 특정 메시지로, 존재 여부를 나타내는 원인이고, 활성화Suppression은 억제가 허용되는지 여부를 나타내며, writableStackTrace는 스택 추적이 쓰기 가능해야 하는지 여부를 지정합니다.
5. RuntimeException (Throwable cause): 이는 주어진 원인과 조건의 지정된 자세한 오류 메시지(cause==null ? null : cause.toString ())를 사용하여 새로운 런타임 예외를 발생시킵니다. 기본적으로 클래스와 해당 특정 항목이 있습니다. 메시지를 보내세요.
구문:
public RuntimeException (Throwable cause)
나중에 Throwable.getCause() 메소드를 통해 가져오기 위해 원인을 보관하고 있으며, null 값이 허용되는 경우 원인을 알 수 없음을 나타냅니다.
이러한 예외를 방지하기 위해 수행하는 방법을 예외 처리라고 합니다. 예외가 발생하고 이를 처리할 수 없으면 전체 코드가 쓸모없게 되므로 코딩하는 동안 개발자가 명심해야 할 가장 기본적인 사항 중 하나입니다.
Java에서 확인된 예외를 처리하기 위해 throw 및 throw라는 특정 절을 사용합니다. 런타임 예외는 일반적으로 입력에 결함이 있기 때문에 발생하며 ArrayIndexOutOfBoundsException, IllegalArgumentException, NumberFormatException 또는 NullPointerException과 같은 예외가 발생합니다. 이러한 오류를 코드에 포함시켜 처리해도 아무런 변화가 없지만 문서화 요청에 모범 사례로 사용할 수 있습니다.
다음과 같이 런타임 예외를 사용자 정의할 수 있습니다.
public class AuthenticateUser extends RuntimeException { public AuthenticateUser (String msg) { super (msg); } }
다음은 런타임 예외의 4가지 주요 유형에 대한 예입니다.
유효하지 않거나 사용할 수 없는 배열의 인덱스 값을 요청할 때 발생합니다.
Code:
public class Main { public static void main (String[] args) { // Random array of numbers intip[] = {16, 17, 18, 19, 20}; for (inti=0; i<=ip.length; i++) System.out.println (ip[i]); } }
Output:
As seen in this example, in the input array has its index value from 0 to 4. But in this for loop, the length of the array retrieved will be 5, and when that is tried to access in the array, it will throw the ArrayIndexOutOfBoundsException during RunTime of the code.
The cause of this exception is when the argument format provided is invalid.
Code:
public class Main { inti; public void getMark (int score) { if (score < 0 || score > 100) throw new IllegalArgumentException (Integer.toString (score)); else i = score; } public static void main (String[] args) { Main t = new Main (); t.getMark (30); System.out.println (t.i); Main t1 = new Main (); t1.getMark (120); System.out.println (t1.i); } }
Output:
Here we know that the maximum value of a percentage value is 100. So when we pass the value as 101, we get the Illegal argument exception during run time.
This exception is usually thrown when a string is to be converted to a numeric value like either float or integer value, but the form of the string given as input is either illegal or inappropriate.
Code:
public class Main { // giving input string as null public static void main (String[] args) { inti = Integer.parseInt (null); } }
Output:
In this example, we are giving the input string to be parsed into an integer as null. Hence the number format exception is thrown.
This exception occurs when a reference object that the variable is referring to is null.
Code:
public class Main { public static void main (String[] args) { Object reference = null; reference.toString (); } }
Output:
In this example, we are creating an object called reference having a null value. The same object is being called for an operation, and hence this error is thrown.
Conclusion: Runtime exceptions are thrown at runtime and hence difficult to be detected during compile time. They are difficult to handle, and the throws clause can only be used to define them but not catch them.
This is a guide to Java RuntimeException. Here we discuss the Introduction and how to Avoid RuntimeException in Java, and it’s Working along with its examples. You can also go through our other suggested articles to learn more –
위 내용은 자바 런타임예외의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!