Total Answers and Comments: 5
Last Update: August 11, 2008 Asked by: abhishek
Submitted by : ABYSS Yes, we can create an object of the Base class.
If we make a class as abstract then we can't create an object of that class.
we can create only pointer of that class this is because to provide one interface to access and so that runtime time polymorphism can implement.
Above answer was rated as good by the following members: achintya
September 08, 2006 17:15:18 #3
RAJEEV16706
Member Since: September 2006 Contribution: 7
RE: can we create a object of Base class?..If we... Hi,
There are only two mechanism in java to define a type with multiple implementations those are interfaces and abstract classes.
abstract class permit implementation of some methods in it and interface not.
Is this answer useful? Yes | No
October 12, 2006 02:02:02 #4
ABYSS
RE: can we create a object of Base class?..If we... Yes, we can create an object of the Base class.
If we make a class as abstract then we can't create an object of that class.
we can create only pointer of that class this is because to provide one interface to access and so that runtime time polymorphism can implement.
Is this answer useful? Yes | No 1 0 Overall Rating: +1
Go To Top