Java:异常引发类?
2022-09-03 08:40:10
我有DirReader和Search类。搜索使用 DirReader。我希望搜索知道DirReader何时引发异常。那么我怎么能有类抛出异常呢?
目前,我使用 initCorrect -dummy var。异常样式的方法可能更合适。
简化的示例错误
$ javac ExceptionStatic.java
ExceptionStatic.java:4: '{' expected
public class ExceptionStatic throws Exception{
^
1 error
法典
import java.util.*;
import java.io.*;
// THIS PART NEEDS TO BE FIXED:
public class ExceptionStatic throws Exception{
private static boolean initCorrect = false;
public static String hello;
static{
try{
hello = "hallo";
//some other conditionals in real code
if( true) throw new Exception();
initCorrect=true;
}catch(Exception e){
e.printStackTrace();
}
}
public static void main(String[] args){
if(initCorrect)
System.out.println(hello);
}
}