How does abstract modifier work?



How does abstract modifier work?..

Answer / javamasque

Abstract means no concrete, it isn’t directly used. It depends on an implementation to be used. The abstract key word can be used before class (top-level/inner) or method.

Abstract class
• If we make a class abstract, it is not directly instantiated. It have to have a child class to be used.
• It is only be used through inheritance.
• The legacy or common functionality are kept in abstract class.
• It is also used for up casting and dynamic polymorphism.
• It is mostly used in factory design pattern.
• An abstract class can implement and extends another interface and class.

Abstract method
• An abstract doesn’t have any body.
• It has to have an override non-abstract method.
• If a class has an abstract method, then the class has to be abstract.
• An abstract method can only be set visibility modifier either public or protected.

Abstract inner class
• An inner class can be abstract but it is not commonly used and is not recommended also.
• A tight coupling utility is implemented as inner class but if the utility is too complex and we need to segregate into different inner subclasses, then we should go for abstract inner class. The scenario is very rare and it may not come in web applications but may come very big swing application.

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More Core Java Interview Questions

Explain when we should make an instance variable private.

0 Answers  


What is array length in java?

0 Answers  


Do I need java on my pc?

0 Answers  


What is close method? How it's different from Finalize & Dispose?

0 Answers   InfoAxon Technologies,


What is field name?

0 Answers  






Can a list be null in java?

0 Answers  


I/O blocking means?

1 Answers  


What is the use of StringTokenizer class?

0 Answers   Hexaware, Virtusa,


How to Sort list of Strings in ascending order without using java api.

1 Answers   HCL, NIIT,


What is the use of java?

0 Answers  


What is Difference between Serializable and Externalizable in Java serialization?

1 Answers   Cognizant, IBM,


What is the static import?

0 Answers  


Categories