Can someone tell me that how can i create object of abstract class and interface. What i know is we cant intaniate the absract class and interface.
Thanks and Regards, gautam
|
Can someone tell me that how can i create object of abstract class and interface. What i know is we cant intaniate the absract class and interface. Thanks and Regards, gautam |
|||
|
|
|
To create object of an abstract class just use new just like creating objects of other non abstract classes with just one small difference, as follows:
In the same way You can create an object of interface type, just as follows:
|
||||
|
|
|
You write a class that derives from the abstract class or implements the interface, and then instantiate that. |
|||
|
|
|
You can not instantiate an abstract class or an interface - you can instantiate one of their subclasses/implementers. Examples of such a thing are typical in the use of Java Collections.
You are using the interface type |
|||
|
|
|
You can provide an implementation as an anonymous class:
Likewise, an anonymous class can extend a parent class instead of implementing an interface (but it can't do both). |
|||
|
|
|
"instantiate" means "create an object of". So you can't create one directly. The purpose of interfaces and abstract classes is to describe the behaviour of some concrete class that implements the interface or extends the abstract class. A class that implements an interface can be used by other code that only knows about the interface, which helps you to separate responsibilities, and be clear about what you want from the object. (The calling code will only know that the object can do anything specified in the interface; it will not know about any other methods it has.) If you are using someone else's code that expects a |
|||
|
|
|
What you know is correct. You cannot create an object of abstract class or interface since they are incomplete class (interface is not even considered as a class.) What you can do is to implement a subclass of abstract class which, of course, must not be abstract. For interface, you must create a class which implement the interface and implement bodies of interface methods. Here are orginal tutorial on oracle site, http://download.oracle.com/javase/tutorial/java/IandI/abstract.html and http://download.oracle.com/javase/tutorial/java/concepts/interface.html |
|||
|
|
|
There are two ways you can achieve this. 1) Either you extend / implement the Abstract class / interface in a new class, create the object of this new class and then use this object as per your need. 2) The Compiler allows you to create anonymous objects of the interfaces in your code. For eg. ( new Runnable() { ... } ); Hope this helps. Regards, Mahendra Liya. |
|||
|
|
|
||||
|
|
|||
|
|