Given the following declarations:

class Qu3 { }
Object obj = null;
Qu3 var2 = new Qu3();

Is this assignment statement valid or not? Why?

var2 = (Qu3)obj;
link|improve this question
The statement makes no sense to me. Why don't you write var2 = null; instead? – Fischermaen Dec 9 '11 at 16:24
13  
You have a device which determines whether an assignment statement is valid or not: the compiler. What does the compiler tell you? – Eric Lippert Dec 9 '11 at 16:24
3  
Also, "why" questions are hard to answer. Are you asking "what line of the C# specification justifies that assignment being invalid/valid?" Are you asking "what are the general principles that govern explicit conversions?" Are you asking "Who made the decision in 1999 to allow/disallow this particular conversion in C#?" What are you really asking here? – Eric Lippert Dec 9 '11 at 16:32
@EricLippert He's asking us to do his homework. – Ryan Rinaldi Dec 9 '11 at 16:34
1  
+1. Because it is perfectly legal for a beginner to ask a question on fundamental principles of c#. His question touches inheritance, assignment compatibility and casting. – Olivier Jacot-Descombes Dec 9 '11 at 16:54
show 4 more comments
feedback

closed as not constructive by Ahmad Mageed, Ken White, Eric Lippert, Tudor, Anthony Pegram Dec 9 '11 at 16:53

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.

3 Answers

Yes, it is valid, it will not cause any compilation errors or any runtime exceptions. var2 will be null of course.

link|improve this answer
feedback

Yes this statement is valid, however strange it appears. That is because obj is a reference to null, so when you cast null to Qu3 it is perfectly valid, as Qu3 is a reference type. This null reference can then be assigned to var2 perfectly legally.

Why you would want to do any of that is beyond me, but it does work.

link|improve this answer
feedback

null is compatible with all nullable types, in particular with classes. System.Object, which is the same as the c# object is the root of the .NET type hierarchy. This means, that Qu3 derives implicitly from object. Therefore, obj can store a reference to any class, particularly to Qu3. If you set obj = new Qu3() or obj = null, then you can legally cast obj to var2 with var2 = (Qu3)obj;. However, if obj was initialized with another type (e.g. obj = "string";), you would get an exception at runtime, when casting.

If you are not sure, whether obj is a Qu3 then you can do two things:

1: if(obj is Qu3) var2 = (Qu3)obj;

2: var2 = obj as Qu3;

In the second case, no exception will be raised, if obj is of the wrong type. Instead var2 will be set to null.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.