java.lang.AbstractMethodError分析及解决思路[亲测有效]

Java (93) 2023-06-18 10:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说java.lang.AbstractMethodError分析及解决思路[亲测有效],希望能够帮助你!!!。

今天运行程序,出现了java.lang.AbstractMethodError。查阅JDK文档,解释如下:

public class AbstractMethodError
extends IncompatibleClassChangeError

Thrown 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异常。

 

简单的类引用如下图:

java.lang.AbstractMethodError分析及解决思路[亲测有效]_https://bianchenghao6.com/blog_Java_第1张

发表回复