What is difference between abstract class & final class
Answer Posted / pallavi
An abstract class is one which can't be instantiated, as it
contains one or more abstract methods( methods that are
only declared, their implementation is left for
subclasses).An abstract class always needs to be extended
in order to be used.
A Final class is one which can't be extended/inherited.
| Is This Answer Correct ? | 11 Yes | 8 No |
Post New Answer View All Answers
How can a gui component handle its own events?
Can You Have Virtual Functions In Java?
How to change value in arraylist java?
What is parsing in grammar?
What is a singleton factory?
What is variable explain with example?
extending thread class or implementing runnable interface. Which is better? : Java thread
What is jar?
Difference between method overloading and overriding.
What is singleton class example?
What is bubble sort in java?
Implementations of set interface?
Why are arrays useful in java?
Why java doesn’t support multiple inheritances?
Explain notify() method of object class ?