NoSuchMethodError(nosuchmethoderror V)

  本篇文章为你整理了NoSuchMethodError(nosuchmethoderror V)的详细内容,包含有nosuchmethoderror异常 nosuchmethoderror V nosuchmethoderror继承自 nosuchmethoderror继承自throwable NoSuchMethodError,希望能帮助你了解 NoSuchMethodError。

  一个应用程序调用了一个类(类或者类的实例)中的方法,但是该类中已经不存在该方法的定义,这种情况在编译时就能够发现。

  jar 包冲突,导致类版本不一致

  A 类 调用 B类的方法,B类中也有该方法,但是B中的方法的返回值调整了(如 int 改为 Integer),B类所在的jar包deploy了,但是A类所在的jar未deploy,导致该错误

  先看下类图
 

  先看下源码

  

package java.lang;

 

   * Thrown if an application tries to call a specified method of a

   * class (either static or instance), and that class no longer has a

   * definition of that method.

   * p

   * Normally, this error is caught by the compiler; this error can

   * only occur at run time if the definition of a class has

   * incompatibly changed.

   * @author unascribed

   * @since JDK1.0

  public

  class NoSuchMethodError extends IncompatibleClassChangeError {

   private static final long serialVersionUID = -3765521442372831335L;

   * Constructs a code NoSuchMethodError /code with no detail message.

   public NoSuchMethodError() {

   super();

   * Constructs a code NoSuchMethodError /code with the

   * specified detail message.

   * @param s the detail message.

   public NoSuchMethodError(String s) {

   super(s);

  

 

  对源码的注释做个简单的翻译:

  

如果一个应用程序调用了一个类(类或者类的实例)中的方法,但是该类中已经不存在该方法的定义,则会抛出该异常。

 

  通常情况下,这个错误会在编译期被发现。当且仅当类的定义发生了不兼容的改变时,会发生在运行期。

  

 

  以上就是NoSuchMethodError(nosuchmethoderror V)的详细内容,想要了解更多 NoSuchMethodError的内容,请持续关注盛行IT软件开发工作室。

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: