Can we have a abstract class withought any method? What is a
purspose of this?
Answers were Sorted based on User's Feedback
Answer / malli
Yes,we can able to keep abstract class without any any methods.
purpose: Abstract class support for all unimplemented
methods (or) all concrete methods (or) some concrete methods
and abstract methods. so based on requirement we can use
abstract class.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sneha
Ya we can have an abstract class withought any method...It helps to prevent it from being instantiated...
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / sourav kumar verma
it may or may not include abstract methods. Abstract classes
cannot be instantiated, but they can be subclassed.
| Is This Answer Correct ? | 0 Yes | 1 No |
How do you check if two given string are anagrams?
What is purpose of applet programming?
what is the diffrences between platform independent and portable
Which are different kinds of source code?
What are the types of arrays in java?
What is meant by 'Class access modifiers'?
How do you reverse a list?
Can static methods be inherited?
how to compile jsp?
Which is a valid identifier?
Is cout buffered?
Can main() method in java can return any data?