As I understand it, C#/.Net generics support some degree of reification. So, if I have the following code:
List<int> list = new List<int>();
list.Add(1);
Will the value 1 be autoboxed or will the 'list' object handle primitive ints efficiently?
|
As I understand it, C#/.Net generics support some degree of reification. So, if I have the following code:
Will the value 1 be autoboxed or will the 'list' object handle primitive ints efficiently?
| ||||
|
feedback
|
|
No, it won't be boxed. At execution time, the backing array for the Basically, generics in .NET keep a lot more of their information than they do in Java - the CLR natively understands generics and deals with them appropriately, rather than in Java where the JVM is pretty much ignorant of them. For example, if you write:
Then | ||||
|
feedback
|
|
The | ||||
|
feedback
|
|
As others have noted, the jitter generates new code for every construction involving a new value type. An interesting point not yet mentioned so far is that the jitter will generate code once for a reference type construction and re-use that for every reference type. The code for That might sound crazy, but remember, generics are not templates. By the time the code for the generic method body IL is emitted, overload resolution and other relevant semantic analysis is already done by the C# compiler. | |||
feedback
|
|
.NET generics are getting specialized for structs, thus there is no boxing required in your case. Note that there is no need for casting too anyway. | |||
|
feedback
|