Abstract class's can have a constructor, but you cannot access it through the object, since you cannot instantiate abstract class. To access the constructor create a sub class and extend the abstract class which is having the constructor.Examplepublic abstract class AbstractExample {public AbstractExample(){System.out.println("In AbstractExample()");}}public class Test extends AbstractExample{public static void main(String args[]){Test obj=new Test();}}
Java
Topic: Abstract Class and Interfaces
Can Abstract Class have constructors? Can interfaces have constructors?
Browse random answers:
How to Declare Interfaces in java?
what are the properties of interfaces?
How to implement interfaces?
How to extend intrfaces?
Explain tagging interfaces in java?
What is the difference between Abstract class and Interface?
What does it mean that a method or class is abstract?
What must a class do to implement an interface?
What is a cloneable interface and how many methods does it contain?
What is meant by "Abstract Interface"?
How to define an Interface?
Can Abstract Class have constructors? Can interfaces have constructors?
What methods would a class that implements the java.lang.CharSequence interface have to implement?
What is wrong with the following interface?public interface SomethingIsWrong { void aMethod(int aValue) { System.out.println("Hi Mom"); }}
Is the following interface valid?public interface Marker {}
Can interfaces contain inner classes?
What interface do you implement to do the sorting?
What is the eligibility for a object to get cloned?
What is the use of serializable?
Can a abstract method have the static qualifier?