3
$ javac TestExceptions.java 
TestExceptions.java:11: cannot find symbol
symbol  : class test
location: class TestExceptions
            throw new TestExceptions.test("If you see me, exceptions work!");
                                    ^
1 error

代码

import java.util.*;
import java.io.*;

public class TestExceptions {
    static void test(String message) throws java.lang.Error{
        System.out.println(message);
    }   

    public static void main(String[] args){
        try {
             // Why does it not access TestExceptions.test-method in the class?
            throw new TestExceptions.test("If you see me, exceptions work!");
        }catch(java.lang.Error a){
            System.out.println("Working Status: " + a.getMessage() );
        }
    }
}
4

2 回答 2

6

TestExceptions.test返回 type void,所以你不能throw。为此,它需要返回一个扩展类型的对象Throwable

一个例子可能是:

   static Exception test(String message) {
        return new Exception(message);
    } 

但是,这不是很干净。更好的模式是定义一个TestException扩展Exceptionor RuntimeExceptionor的类Throwable,然后就是throw这样。

class TestException extends Exception {
   public TestException(String message) {
     super(message);
   }
}

// somewhere else
public static void main(String[] args) throws TestException{
    try {
        throw new TestException("If you see me, exceptions work!");
    }catch(Exception a){
        System.out.println("Working Status: " + a.getMessage() );
    }
}

(还要注意,包中的所有类java.lang都可以通过它们的类名而不是它们的完全限定名来引用。也就是说,你不需要写java.lang。)

于 2010-04-13T16:37:08.743 回答
3

工作代码

试试这个:

public class TestExceptions extends Exception {
    public TestExceptions( String s ) {
      super(s);
    }

    public static void main(String[] args) throws TestExceptions{
        try {
            throw new TestExceptions("If you see me, exceptions work!");
        }
        catch( Exception a ) {
            System.out.println("Working Status: " + a.getMessage() );
        }
    }
}

问题

您发布的代码存在许多问题,包括:

  • 捕捉Error而不是Exception
  • 使用静态方法构造异常
  • Exception不为您的例外而扩展
  • Exception使用消息调用超类构造函数

发布的代码解决了这些问题并显示了您的期望。

于 2010-04-13T16:38:48.613 回答