Given the following declarations:
class Qu3 { }
Object obj = null;
Qu3 var2 = new Qu3();
Is this assignment statement valid or not? Why?
var2 = (Qu3)obj;
|
Given the following declarations:
Is this assignment statement valid or not? Why?
| ||||
|
show 4 more comments
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Yes, it is valid, it will not cause any compilation errors or any runtime exceptions. | |||
|
feedback
|
|
Yes this statement is valid, however strange it appears. That is because Why you would want to do any of that is beyond me, but it does work. | |||
|
feedback
|
|
If you are not sure, whether 1: 2: In the second case, no exception will be raised, if | |||
|
feedback
|
var2 = null;instead? – Fischermaen Dec 9 '11 at 16:24