vote up 5 vote down star

.NET we have primitive datatypes like int and value types like struct.

And also we have reference types. All of them seem to be derived from object class.

How .NET determine primitive, value type against the reference type?

Where it is done? At compiler or at JIT?

Does this belongs to the capabilities of the compilers?

flag

73% accept rate
I'm sorry, but I don't quite understand your question. – Steven Sudit Aug 31 at 18:13

3 Answers

vote up 10 vote down check

All value types, including built-in Common Type System (CTS) primitives, derive DIRECTLY from the CTS type "System.ValueType", (except enums).

So the compiler can tell by examining any types' base type. If it is "System.ValueType", then it's a value type, otherwise, it's a reference type.

Edit: Enums, as in

public Enum Shipper {FedEx, Aerborne, USPS, Stork}

... do not derive Directly from System.ValueType, they derive from System.Enum, which derives from System.ValueType...

link|flag
Except for System.Enum, which derives from System.ValueType but is not a value type itself. But all enum types are value types which derive from System.Enum making their base type not System.ValueType. So value types are types derived from System.ValueType except for System.Enum, although the internal implementation of this test can be performed more efficiently than this. – 280Z28 Aug 31 at 18:20
Thanks Charles. Does java works in similar way? – Gopalakrishnan Subramani Aug 31 at 18:28
@280Z28: I'm not sure what that means, as System.Enum is not a type you can directly use. In fact, it's not even real enough to use as a constraint on a generic type (see bottom of msdn.microsoft.com/en-us/library/…). – Steven Sudit Aug 31 at 18:59
@280Z28 Please calrify 'Except for System.Enum, which derives from System.ValueType but is not a value type itself.' – PK Aug 31 at 19:04
@280Z28. Enums are an exception, in that they must derive from System.Enum, which is just a specialization of an integral type (short, int, long, etc.) that does not add any new fields to the integral type but simply restricts the value space which is allowed. Any enumeration type must specify a second type which will be used as the core integral type, to hold the data representation. This second core integral type, of course, derives from System.ValueType. And YES, enums ARE value types. – Charles Bretana Aug 31 at 19:15
show 5 more comments
vote up 2 vote down

Value types are derived from System.ValueType, which, among other things, gives a default (but slow) implementation of GetHashCode and Equals. (They're slow because they use reflection).

Primitive types like int can be boxed into value types in IL using the box instruction. They have special IL instructions to work with them.

Reference types are all other classes.

There are also pointers, which can be used in unsafe code and do not derive from object at all. EDIT - proof.

link|flag
Are you sure pointer types don't derived from IntPtr? – Steven Sudit Aug 31 at 19:03
Yes, they're completely unrelated. For one thing, IntPtr is a struct, and you can't derive from a struct. – SLaks Aug 31 at 21:12
vote up 2 vote down

Value types are actually derived from System.ValueType which itself is derived from System.Object.

link|flag

Your Answer

Get an OpenID
or

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