| Author |
Class Cast Exception Problem
|
Abiodun Adisa
Ranch Hand
Joined: Jan 17, 2002
Posts: 495
|
|
I am receiving the following error whenever i am trying to cast to some other object My question is am i suppose to cast to org.apache.myfaces.context.servlet.AbstractAttributeMap which is what i did and why is there a $EntrySetEntry after AbstractAttributeMap
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32689
|
|
Which exception are you getting? Is it a ClassCastException? The bit about $EntrySetEntry means there is an inner or nested class inside AbstractAttributeMap called EntrySetEntry. Most Map implementations have EntrySet inner or nested classes. I think nested, but I am not sure. You cannot cast to "some other object." You can only cast an object reference to a class which the object is already an instance of. So if you are casting ((Foo) myObjectReference.)bar() it means that myObjectReference must already be an instance of Foo (and Foo must have a method called bar()). If whatever you are casting doesn't refer to an instance of that class, the JVM will be unable to execute the cast and you get the ClassCastException. But you haven't actually told us which Exception you are getting.
|
 |
 |
|
|
subject: Class Cast Exception Problem
|
|
|