| Author |
instantiation
|
sandeep Talari
Ranch Hand
Joined: Dec 24, 2007
Posts: 63
|
|
can't we instatiate the abstract class or not... some where i read that we can do but when i tried it its not working can somebody help me
|
 |
Jesus Angeles
Ranch Hand
Joined: Feb 26, 2005
Posts: 2036
|
|
|
No, you can never instantiate an abstract class.
|
 |
marc weber
Sheriff
Joined: Aug 31, 2004
Posts: 11343
|
|
You cannot directly instantiate an abstract class. However, you can instantiate a concrete subclass and upcast the reference to the abstract type. For example...
|
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: instantiation
|
|
|