0

在运行时执行“健全性检查”时,最好的内置函数是什么Exception来指示逻辑错误?InternalError很诱人,但据Error我了解,它应该只用于指示 JVM 本身的问题,而不是应用程序逻辑错误。现在我倾向于抛出RuntimeExceptions,但我觉得这很令人反感,因为类型太笼统了。我应该使用更具体的类型吗?

我避免使用assert这些检查,因为它们仍应在生产中执行。出于这个原因,“你应该使用assert”不是正确的答案。

对于这个问题的主观性质,我深表歉意,但我希望有一些我不知道的众所周知的最佳实践。

编辑:这是我正在谈论的一个很好的例子,虽然当然还有其他很好的例子而且这个想法更普遍:

public static void foobar(ModelObject o) {
    switch(o.getEnumProperty()) {
    case ENUMVALUE1:
        // Handle...
        break;
    case ENUMVALUE2:
        // Handle...
        break;
    default:
        // In theory, this should never be reached. The code should handle any
        // enum value it's Java-legal for the code to pass. But, if a  new
        // enum value is added and this code is not updated, this WILL be
        // reached. This is not an IllegalArgumentException because the caller
        // passed a valid value -- remember, we SHOULD handle any enum value
        // here -- but the code has not been updated. For this reason, it's an
        // "internal error" of sorts. However, there's no good "my program's
        // logic is broken" Exception that I know of built into the JRE. It is
        // this Exception that I'm looking for in this question.
        //
        // Hopefully this clarifies the question somewhat.
        throw new RuntimeException("Unhandled: "+o.getType());
    }
}

我想表达这个问题的更具体的方式是“如果在生产环境中存在永远不应该达到的代码,但可以达到GETS,我应该抛出什么样的异常?” 这不完全是正确的问题,但所有“健全性检查”都可以用永远不应该到达的代码来“拼写”,所以它足够接近。

4

2 回答 2

3

Java是面向对象的。

抛出一个SanityException或一个FailedSanityCheckException

换句话说,创建您自己的扩展 Exception 的类。

也许MyCompanyExceptionSanityException更合适;)

如果您希望它成为未经检查的运行时异常,请扩展RuntimeException

class SanityException extends RuntimeException {
    public SanityException(String msg) {
        super(msg);
    }
}

它非常简单且非常强大。

您的逻辑只能捕获和处理SanityExceptions,这很好。

我知道您的问题要求内置异常...但是如果您发现内置选项因为不够具体而 令人反感,那么这就是创建自己的选项的确切原因(尤其是考虑到它有多容易)。

在我看来,这就是使用异常的方式。

于 2013-06-28T05:01:19.710 回答
2

有一个可AssertionError抛出的异常。请参阅http://docs.oracle.com/javase/6/docs/api/java/lang/AssertionError.html

于 2013-06-28T04:35:01.113 回答