Lets assume i have 2 totally different user-defined classes A and B.
A a = new A();
B b = new B();
. . .
. . .
a = (A) b; //I'm pretty sure this raises a ClassCastException, but how to deal with this issue?
|
Lets assume i have 2 totally different user-defined classes
|
|||
|
You can't, unless B derives from A. But since A and B are totally different, why would you want to convert them in the first place? |
|||||
|
|
Testing before assign the variable. In java:
In C#:
But as someone mentioned if you do not derive the class a and b from c I cant see to much benefit of this assignment. |
||||
|
ClassCastExceptionit is most likely going to do it at compile time. If you want to trap it at runtime use a try-catch block. More clarity in the question is required. – Brett Walker Oct 24 '11 at 4:43ClassCastExceptionsdon't happen at compile time. Compilation errors happen at compile time. – EJP Oct 24 '11 at 5:48