Can I define an abstract class without adding an abstract method?
Thanks
|
|
Of course. Declaring a class abstract only means that you don't allow it to be instantiated on its own. Declaring a method abstract means that subclasses have to provide an implementation for that method. The two are separate concepts, but obviously you can't have an abstract method in a non-abstract class. You can even have abstract classes with |
|||||
|
|
Yes you can do it. Why don't you just try doing that? |
|||||||||||||||||||||
|
|
Yes you can. The abstract class used in java signifies that you can't create an object of the class. And an abstract method the subclasses have to provide an implementation for that method. So you can easily define an abstract class without any abstract method. As for Example :
This is fine. |
||||
|
|
|
Yes, you can declare a class you cannot instantiate by itself with only methods that already have implementations. This would be useful if you wanted to add abstract methods in the future, or if you did not want the class to be directly instantiated even though it has no abstract properties. |
|||||||
|
|
Yes, you can define an abstract class without an abstract method. |
||||
|
|