Why do we assign an instance to an instance of upper class? What are the reasons to do it? For ex. why we use this code below?
List lst = new LinkedList();
It seems List is upper class of LinkedList. Why do we need to use upper class' instance instead of inherited class', LinkedList's, instance.
Also, I've another question.
I've seen some code which assign a class' instance to its interface. Why do we need that example below? I know, since we can't generate instance of an interface, it allows us to use an instance of an interface. But, what's the point of using an instance of an interface?
Apple a = new Apple();
IFruit b = (IFruit) a; (IFruit is the interface of Apple)
I hope, i've made myself clear. Thanks in advance.
Listis an interface and not a class, by the way. Alsolstis not a "Listinstance" it's a "variable of typeList". – Joachim Sauer Jan 26 '11 at 12:47