So I have a class cat which implements a interface Vocal, I was wondering why when I
created a ArrayList(Vocal) I was able to add instances of cat to it?
Thank You
|
|
It's because when Since the |
|||
|
|
|
Yes. You will be able to add an instance of any class that is declared to implement |
||||
|
|
|
In your case, the relationship will be exactly the same Cats IS A Vocal too. So that was the reason you are able to add the arraylist of CATS in Vocal Type Arraylist |
|||
|
|