- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一些外部提供的回调要运行。因为它们可以包含任何东西,所以我更愿意冒险在它们上捕获 Throwable
并因此从任何可恢复的错误中恢复。
回调执行的某些阶段允许抛出错误,除非错误连续重复两次。在这种情况下,它们将被标记为无效并且无法再运行,除非用户手动启动它们。
这是处理该问题的方法:
/**
* Sets whether the bot is disabled due to error or not. If error has occured during
* getWindow, the bot will be disabled immediatelly. If the error occured during canRun() or run()
* the bot will only be disabled if the error is repetitive.
* @param error error that occured
* @param phase phase of execution in which the error occured
* @return true if this error is not significant enough to cancel this bot
*/
public boolean continueOnError(Throwable error, ExecutionPhase phase) {
System.err.println("Error "+error+" caught in robot "+this.getClass().getName());
System.err.println("Last: "+lastError+((error.equals(lastError)?" which is the same as last":" which is defferent than last")));
if(phase == ExecutionPhase.GET_WINDOW || (error.equals(lastError) && phase==errorPhase)) {
//Remember last
setLastError(error, phase);
//If robot state listener is listening, inform it about this event
if(listener!=null)
listener.disabledByError(error);
//Disable the robot - on attempt to run, it will throw RobotDisabledException
return !(errorDisabled = true);
}
//Rememeber last
setLastError(error, phase);
//The robot can remain running, but next same error will turn it down
return true;
}
我知道这是一种原始方法,但我需要从某个地方开始。此代码的问题在于 Throwable
上的 equals
方法总是返回 false。查看此方法生成的输出:
Error java.lang.Error: TEST ERROR caught in robot cz.autoclient.robots.LaunchBot
Last: java.lang.Error: TEST ERROR which is defferent than last
Error java.lang.Error: TEST ERROR caught in robot cz.autoclient.robots.LaunchBot
Last: java.lang.Error: TEST ERROR which is defferent than last
Error java.lang.Error: TEST ERROR caught in robot cz.autoclient.robots.LaunchBot
Last: java.lang.Error: TEST ERROR which is defferent than last
Error java.lang.Error: TEST ERROR caught in robot cz.autoclient.robots.LaunchBot
Last: java.lang.Error: TEST ERROR which is defferent than last
为什么会这样?
最佳答案
Throwable
不会覆盖 Object
的 equals
,所以 error.equals(lastError)
的行为与 error == lastError
相同。
也许这对您比较类就足够了:
error.getClass().equals(lastError.getClass())
关于java - 等于方法不适用于 Throwable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29671466/
我正在尝试弄清楚如何将 Throwable\/List[Throwable\/A] 干净利落地排列成 Throwable\/List[A] ,可能使用 List 的 Traverse 实例,但我似乎无
在不创建新 Throwable 的情况下添加一种通用方法来向 Throwable 添加信息是否有益? 我经常看到这样的代码: try { foo(); } catch (Exception e
当发生异常并且我得到 Throwable 时,我想将它转换为 MyThrowable 并重新抛出它。 我正在实现实例创建的方法 obs1 = obs1.map(new Func1() {
我有一个带 @Aspect 注释的类正在调用 ProceedingJoinPoint#proceed() 。此方法抛出 Throwable,因此该类看起来像这样: @Aspect @Component
我知道网络上充斥着不要捕获 Throwable 的建议,但是它适用于使用 CompleteableFuture 吗?例如,在 ExecutorService es = Executors.ne
这个问题在这里已经有了答案: No Exception while type casting with a null in java (10 个答案) 关闭 7 年前。 这个问题只是让我理解这个概念
假设我有几种方法可以返回 \/[Throwable, String]。右边的值 Int 是我想要的,左边的值累积错误。 import scalaz._ import Scalaz._ type Err
今天我去部署一个我创建的 Java 应用程序到 Google App Engine,但我遇到了一些非常无用的错误消息。 Invocation of init method failed; nested
我正在实现一个 AOP 拦截器,它处理 RetryTemplate 中的逻辑。问题是 ProceedingJoinPoint#execute 被声明为抛出 Throwable,但 RetryTempl
首先我必须说我阅读了以下内容:http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html ! 尝试编译时出现的错误如下
我正在编辑别人的代码,并且一个方法有“Throws Throwable”。我把它去掉了,所以 Eclipse 会让我只添加它需要抛出的异常类型...但是,我在调用父类(super class)(我当前
当我开发 android 应用程序时,我想制作一个 CrashReport 类,然后使用它向我的服务器发送报告。 我做了一个名为CrashHandler的类,它实现了UncaughtException
我在java中得到了这段代码: public static void main(String[] args) { try{ Class tryLoadi
我正在使用 JDK8 在 macOS 上工作。 在 catch 中,我必须给出异常的完整名称,例如在这种情况下 (ArithmeticException e) 而不是 (Exception e)运行代
我有一个执行 I/O 的类(我们称之为 ABC)。像 FileOutputStream.close 这样的东西会让你在它们周围使用 try catch block 。此外,我创建了自己的可抛出对象,帮
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why doesn’t Java allow generic subclasses of Throwable
我在这里看到了很多关于 Exception 和 Throwable 之间区别的一般性问题。我知道其中的区别,而且我有一个更具体的问题。 我正在编写一个库,用于绑定(bind)并运行多个用户提供的代码片
我已经捕获了任何未捕获的异常 Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
我有一些外部提供的回调要运行。因为它们可以包含任何东西,所以我更愿意冒险在它们上捕获 Throwable 并因此从任何可恢复的错误中恢复。 回调执行的某些阶段允许抛出错误,除非错误连续重复两次。在这种
在java语言中,错误类的基类是java.lang.Error,异常类的基类是java.lang.Exception。 1)相同点:java.lang.Error和java.lang.Excepti
我是一名优秀的程序员,十分优秀!