views:

142

answers:

5

I got the following code:

object var3 = 3;
Console.WriteLine(var3.GetType().ToString());
Console.WriteLine(typeof(object).ToString());

The output is:

System.Int32
System.Object

Why aren't they both System.Object?

Thanks in advance.

+6  A: 

The GetType() function returns the actual type of the instance in the variable.

Even though your variable is declared as object, it's actually holding a boxed Int32 instance.

SLaks
I have no idea what the other answers are trying to prove :)
leppie
I think his question is why does the box's GetType (the object) return Int32 (the type of the boxed value) instead of Object - since boxing causes it to create an object on the heap. If not you're getting a +1
Gishu
@leppie: There sure are a lot of them, aren't there :)
Merlyn Morgan-Graham
+3  A: 

Ignoring the topic of boxing, all classes inherit from type object. This is true for both reference types and value types. GetType shows the most derived type, which in this case is System.Int32.

One of the few times GetType is going to return System.Object is if you do this:

object var = new Object();
Console.WriteLine(var.GetType().ToString());

Boxing refers to when a value type is pointed to by a reference type. Generally this is done as a System.Object reference. TypeOf will return the most derived actual type, not the reference type.

class A
{
}

class B : A
{
}

class C : B
{
}

object obj1 = new ClassA();
ClassB obj2 = new ClassB();
ClassB obj3 = new ClassC();

GetType will do similar things for these types.

System.Console.WriteLine(obj1.GetType().ToString());
System.Console.WriteLine(obj2.GetType().ToString());
System.Console.WriteLine(obj3.GetType().ToString());

ClassA
ClassB
ClassC

Merlyn Morgan-Graham
+1  A: 

This isn't really about boxing; this is about the behaviour of GetType. It returns the type of the value of the variable, not the type the variable was declared with:

    object var4 = new List<string>();
    Console.WriteLine(var4.GetType().ToString());

won't return System.Object either.

AakashM
It will return the type of the instance, not the type of the reference
Merlyn Morgan-Graham
+2  A: 

If you're asking why the boxedObject.GetType() does not return Object.. check out the image under the Section 'Boxing Conversion' on the MSDN Boxing and Unboxing page. Good question btw.. atleast my understanding of your question.

Although I may not be technically correct, it looks like

  • When moved to the heap, a new object is created - its Type pointer set to the original value type's Type object (here System.Int32). This explains GetType() (and also the error if you try to unbox it to a different type).
  • The actual value is then copied over into this object.
Gishu
+1  A: 

declarations of variable is compile time only information whereas method execution is runtime. In other words there's no way GetType() can know what type the object was declared as it can only know the actual type of the object at runtime.

similar if you had

class a
{
}

class b : a

a bInstance = new b();
bInstance.GetType();

the call to bInstance.GetType() have no way of knowing that the variable was declared as type 'a' and I don't think you expect it to return 'a' in this case either. However in the example above a is my abbreviation of object and b is for System.Int32

Rune FS