top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

When designing an abstract class, why should we avoid calling abstract methods inside its constructor?

+2 votes
580 views
When designing an abstract class, why should we avoid calling abstract methods inside its constructor?
posted Mar 28, 2016 by Ati Kumar

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
0 votes

Can I declare an abstract class with no abstract methods in it in Java, if yes then how?

0 votes

By making private constructor, we can avoid instantiating class from anywhere outside and by making class final, no other class can extend it. Why is it necessary for Util class to have private constructor and final class ?

...