Can you have a constructor in abstract class?
Answer Posted / swapnil bhosale
ya ,we can define and call costructor in abstract class but just by using super keyword in base class ,but keep in mind we cannot create instance ob abstract class,this just another way to call contructor in abstract class,go run and see o/p
import java.io.*;
abstract class A
{
A()
{
System.out.println("hi am conS in absT");
}
}
class AA extends A
{
AA()
{
super();//calling abstract constructor
System.out.println("hi i am conS in sub class ");
}
}
class AbstConst2
{
public static void main(String arg[])
{
AA ob=new AA();//creating instance of base class consT
}
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is string subsequence method?
What are kinds of processors?
Can you extend main method in java?
What is native method in java?
What is a protected void?
Is null a string or object in java?
Define jit compiler?
Can we create object of static class?
What is an escape character in java?
How many boolean functions are there?
How does sublist works in java?
What does sprintf mean?
how would you implement a thread pool? : Java thread
What are the differences between graph and tree?
How will you reverse a singly-link list?