java.lang.AbstractMethodError分析及解决思路
·
今天运行程序,出现了java.lang.AbstractMethodError。查阅JDK文档,解释如下:
public class AbstractMethodError extends IncompatibleClassChangeErrorThrown when an application tries to call an abstract method. Normally, this error is caught by the compiler; this error can only occur at run time if the definition of some class has incompatibly changed since the currently executing method was last compiled.
经简单分析,发现是由于代码混淆导致的异常。
排查后发现,某个类(PageRoot)实现了接口IPageRoot,但是没有实现方法getChildCount,同时父类ViewArray实现了接口B中同名方法getChildCount,
导致在非加密时,调用类PageRoot中getChildCount方法时会去找父类ViewArray的getChildCount方法,不会报错。
而混淆后,由于接口IPageRoot和ViewArray是2个,虽然方法同名,但是混淆后的方法是2个不同的名称。调用类PageRoot中getChildCount方法,
实际是调用接口IPageRoot中的getChildCount方法,而接口IPageRoot的getChildCount方法在类PageRoot中没有具体实现,是抽象的,所以出现了AbstractMethodError异常。
简单的类引用如下图:
更多推荐
已为社区贡献2条内容
所有评论(0)