why abstract class will have a constructor?
Answers were Sorted based on User's Feedback
Answer / hari krishna
All the classes including the abstract classes can have
constructors.Abstract class constructors will be called
when its concrete subclass will be instantiated.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / nitin panwar
Bcoz each subclass executes the superclass constructor
before executing own constructor,thats why abstract class
has a constructor .
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / aditya ganjiwale
Its there to be able to initialize the abstract class
internal state.
Lets say you would like to assign two variables, you would
have to do this for every implementation, but with
constructors in the abstract class you only need it once:
So every class inheriting only needs to call the
constructor, instead of assigning the values themself every
time.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ram
Abstract class have the constructor in it just to instantiate its instance variables. Where as Interfaces are not containing any instance variables. That is why, they dont have constructor concept.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is instanceof keyword?
What is use of functional interface in java 8? Explain
What do you understand by garbage collection in Java? Can it be forced to run?
What are keyboard events?
What is the purpose of static methods and variables?
Write a java program to count the number of words present in a string?
Can java cast null?
Explain spliterator in java8?
Why are the methods of the math class static?
Explain all java features with real time examples
What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }
Write a program in java to create a doubly linked list containing n nodes.