Pages

Pages

Pages

Sunday, July 29, 2012

java.lang.AbstractMethodError

AbstractMethodError:


This java.lang.AbstractMethodError is usually thrown when we try to invoke the abstract method.

 we know that an abstract method cannot be invoked and if we try to do so then you will get a compile-time error.So you may think how this error is thrown at run-time?.

The reason is binary incompatibility-what does it mean?

         Whenever a class is modified,other classes that refer to this (modified) class will not be aware of the changes made in it.So all the classes must be compiled as a whole.If not then you may encounter one of the subclasses of incompatible class change error.


"This error indicates that the method that you invoke  is converted into an abstract method now".

see the following example to have an idea about this error

class B
{
public void display()
{
System.out.println("I am inside B");
}
}


import java.util.*;
public class A extends B
{
public static void main(String args[])
{
A a=new A();
a.display();
}
}

output:



C:\blog>javac A.java

C:\blog>java A
I am inside B

Now i am going to convert the display() method as an abstract method and compile it alone. 

 abstract class B
{
public abstract void display();
}

Output:


C:\blog>javac A.java

C:\blog>java A
I am inside B

C:\blog>javac B.java

C:\blog>java A
Exception in thread "main" java.lang.AbstractMethodError: B.display()V
        at A.display(A.java:3)
        at A.main(A.java:8)



As you see,the reason for this exception to be thrown at run-time is i have not compiled the classes as a whole.So whenever you make changes to the existing classes ensure that you have compiled the classes as a whole.

Hence it is not a good practice to change a method into an abstract method in classes that are distributed.Mostly these kind of error occurs when you use third party library in your application.

If this error is not shown at compile time,even if you compile it as a whole package then you must have to check your library settings and class path settings.

Because compiler usually searches for classes in system libraries like bootstrap libraries and extension libraries,also in the current directory,but JVM searches for classes in the specified classpath.

If you accidentally placed your older version in the system libraries and the newer version in the class path then you will not be notified of this error even if you compile it as whole package.

So ensure that the settings relevant to older package has been removed.




31 comments:

  1. Nice post Ganesh, helped me out of a similar issue. :)

    ReplyDelete
  2. Good post..!

    Hi, I am facing a similar kind of issue but with interface. I have added a new method in an existing interface and implemented the same method in the Implemented class also.

    But I am getting java.lang.AbstractMethodError when invoking the newly added method. This is happening only in the AIX box where i am applying the binary for this change..

    Please help me on this.

    ReplyDelete
  3. sometimes it happens due to the maven build issues, make sure all your dependencies are fine and in synch

    ReplyDelete
  4. Great article with an excellent idea! Thank you for such a valuable article. I really appreciate for this great information ....
    IP Camera in chennai |

    Dvr and Nvr systems in chennai |

    Biometric attendance in chennai |

    ReplyDelete
  5. Thank you for sharing your article. Great efforts put it to find the list of articles which is very useful to know, Definitely will share the same to other forums......
    top water alarm service in coimbatore |

    top water level indicator in coimbatore |

    best water level controller service in coimbatore

    ReplyDelete
  6. Outstanding blog thanks for sharing such wonderful blog with us ,after long time came across such knowledgeable blog. keep sharing such informative blog with us.....
    Fruits and Vegetable Rack in Chennai |

    Supermarket rack in Chennai |

    Trolley Manufacture In Chennai

    ReplyDelete
  7. I am definitely enjoying your website. You definitely have some great insight and great stories....
    Tally Training in saligramam |

    Company accounts practice in chennai |

    GST training in chennai

    ReplyDelete
  8. Awesome..You have clearly explained …Its very useful for me to know about new things..Keep on blogging..
    Selenium training in Chennai
    Selenium training in Bangalore
    Selenium training in Pune
    Selenium Online training

    ReplyDelete
  9. Its nice and valuable information, really appreciate for the nice blog ... !!

    Thanks & Regards,
    Digital Marketing Course

    ReplyDelete
  10. Thanks For sharing a nice post about Oracle Apps Training Course.It is very helpful and AWS useful for us.aws training in bangalore

    ReplyDelete
  11. I am really happy to say it’s an interesting post to read. I learn new information from your article, you are doing a great job. Keep it up…

    Bangalore Training Academy is a Best Institute of Salesforce Admin Training in Bangalore . We Offer Quality Salesforce Admin with 100% Placement Assistance on affordable training course fees in Bangalore. We also provide advanced classroom and lab facility.

    ReplyDelete
  12. Such a great word which you use in your article and article is amazing knowledge. Thank you for sharing it.

    Became An Expert In UiPath Course ! Learn from experienced Trainers and get the knowledge to crack a coding interview, @Softgen Infotech Located in BTM.

    ReplyDelete
  13. Java is a widely used programming language expressly designed for use in the distributed environment of the internet. It is the most popular programming language..


    https://www.kaashivinfotech.com/best-final-year-project-in-information-technology/

    ReplyDelete
  14. Such a great word which you use in your article and article is amazing knowledge. Thank you for sharing it.
    DevOps Training in Chennai

    DevOps Course in Chennai

    ReplyDelete