Tagged Questions
Boxing is when a value type is wrapped in a reference-type wrapper for the purposes of using it when polymorphism (conversion to Object or an interface) is required.
46
votes
4answers
559 views
Boxing Occurrence in C#
I'm trying to collect all of the situations in which boxing occurs in C#:
Converting any value type to System.Object type:
struct S { }
object box = new S();
Converting any value type to ...
32
votes
6answers
8k views
What is boxing and unboxing and what are the trade offs?
I'm looking for a clear, concise and accurate answer.
Ideally as the actual answer, although links to good explanations welcome.
27
votes
2answers
524 views
Why the compiler emits box instructions to compare instances of a reference type?
Here is a simple generic type with a unique generic parameter constrained to reference types:
class A<T> where T : class
{
public bool F(T r1, T r2)
{
return r1 == r2;
}
}
...
24
votes
9answers
7k views
Why do we need boxing and unboxing in C#?
Though I know what boxing and unboxing is. But I can't comprehend the real use of it. Why and where should I use it.
short s=25;
object objshort=s; //Boxing
short anothershort=(short)objshort; ...
21
votes
8answers
6k views
Convert an array of primitive longs into a List of Longs
This may be a bit of an easy, headdesk sort of question, but my first attempt surprisingly completely failed to work. I wanted to take an array of primitive longs and turn it into a list, which I ...
18
votes
3answers
226 views
C# - Are Dynamic Parameters Boxed
The title says it all. If I have
void Foo(dynamic X) {
}
And then
Foo(12);
Would 12 get boxed? I can't imagine it would, I'd just like to ask the experts.
17
votes
7answers
543 views
How to test whether a value is boxed in C# / .NET?
I'm looking for a way to write code that tests whether a value is boxed.
My preliminary investigations indicate that .NET goes out of its way to conceal the fact, meaning that GetType() and ...
17
votes
9answers
20k views
How to convert int[] into List<Integer> in Java?
How do I convert int[] into List<Integer> in Java?
Of course, I'm interested in any other answer than doing it in a loop, item by item. But if there's no other answer, I'll pick that one as the ...
15
votes
5answers
1k views
Why comparing Integer with int can throw NullPointerException in Java?
It was very confusing to me to observe this situation:
Integer i = null;
String str = null;
if (i == null) { //Nothing happens
...
}
if (str == null) { //Nothing happens
}
...
14
votes
6answers
258 views
Boxing and Unboxing in String.Format(…) … is the following rationalized?
I was doing some reading regarding boxing/unboxing, and it turns out that if you do an ordinary String.Format() where you have a value type in your list of object[] arguments, it will cause a boxing ...
14
votes
2answers
335 views
Does the VB.NET “If” operator cause boxing?
Those of us who've worked in VB/VB.NET have seen code similar to this abomination:
Dim name As String = IIf(obj Is Nothing, "", obj.Name)
I say "abomination" for three simple reasons:
IIf is a ...
13
votes
3answers
2k views
C# non-boxing conversion of generic enum to int?
Given a generic parameter TEnum which always will be an enum type, is there any way to cast from TEnum to int without boxing/unboxing?
See this example code. This will box/unbox the value ...
12
votes
6answers
7k views
What is the difference between boxing/unboxing and type casting?
What is the difference between boxing/unboxing and type casting?
Often, the terms seem to be used interchangeably.
12
votes
5answers
1k views
Boxing vs Unboxing
Another recent C# interview question I had was if I knew what Boxing and Unboxing is.
I explained that value types are on Stack and reference types on Heap.
When a value is cast to a reference type, ...
12
votes
4answers
945 views
Does calling a method on a value type result in boxing in .NET?
I was just participating in this question:
http://stackoverflow.com/questions/436211/is-everything-in-c-an-object
And one poster (in comments of accepted answer) seemed to think that performing a ...
10
votes
5answers
275 views
C# - Is it possible to pool boxes?
Boxing converts a value type to an object type. Or as MSDN puts it, boxing is an "operation to wrap the struct inside a reference type object on the managed heap."
But if you try to drill into that ...
10
votes
2answers
114 views
Why does the CLR allow mutating boxed immutable value types?
I have a situation where I have a simple, immutable value type:
public struct ImmutableStruct
{
private readonly string _name;
public ImmutableStruct( string name )
{
_name = ...
10
votes
2answers
338 views
Why does calling an explicit interface implementation on a value type cause it to be boxed?
My question is somewhat related to this one: How does a generic constraint prevent boxing of a value type with an implicitly implemented interface?, but different because it shouldn't need a ...
10
votes
3answers
471 views
Is there Boxing/Unboxing when casting a struct into a generic interface?
From the MSDN: http://msdn.microsoft.com/en-us/library/yz2be5wk.aspx
Boxing is the process of converting a value type to the type object or to any interface type implemented by this value type.
...
10
votes
3answers
337 views
How does the CLR know the type of a boxed object?
When a value type is boxed, it is placed inside an untyped reference object.
So what causes the invalid cast exception here?
long l = 1;
object obj = (object)l;
double d = (double)obj;
10
votes
3answers
308 views
Why does generic method with constaint of T: class result in boxing?
Anyone any idea why a generic method which constrains T to class would have boxing instructions in the generates MSIL code?
I was quite surprised by this since surely since T is being constrained to ...
9
votes
3answers
107 views
Does a matter whether a value is primitive or boxed
One can use typeof to determine whether a value is primitive or boxed.
Consider:
typeof "foo"; // "string"
typeof new String("foo"); // "object"
In combination with Object.prototype.toString we ...
9
votes
6answers
563 views
boxing unboxing and generics
The .NET 1 way of creating collection of integers (for example) was:
ArrayList list = new ArrayList();
list.Add(i);
int j = (int)list[0];
Penalty of using this is lack of type safety and ...
9
votes
2answers
430 views
How is the boxing/unboxing behavior of Nullable<T> possible?
Something just occurred to me earlier today that has got me scratching my head.
Any variable of type Nullable<T> can be assigned to null. For instance:
int? i = null;
At first I couldn't see ...
9
votes
3answers
163 views
Should generic constraints be preferred to using interfaces as parameter types?
Consider this trivial function:
public static bool IsPositive(IComparable<int> value)
{
return value.CompareTo(0) > 0;
}
Now, if I pass an int to this method, it gets boxed. Wouldn't ...
8
votes
2answers
101 views
Using constrained generics instead of interfaces — downsides?
Let's say I have
interface IMatrix {
double this[int r, int c] { get; }
}
struct Matrix2x2 : IMatrix {
double a1, a2, b1, b2;
double this[int r, int c] { get { ... } }
}
struct ...
8
votes
3answers
130 views
Widening and Boxing Java primitives
Widening and Boxing Java primitives.
I know it is not possible to widen a wrapper class from one to another as they are not from the same inheritence tree. Why though is it not possible to widen a ...
8
votes
5answers
418 views
Why is boxing a primitive value-type in .NET uncached, unlike Java?
Consider:
int a = 42;
// Reference equality on two boxed ints with the same value
Console.WriteLine( (object)a == (object)a ); // False
// Same thing - listed only for clarity
...
8
votes
7answers
1k views
Boxing and unboxing: when does it come up?
So I understand what boxing and unboxing is. When's it come up in real-world code, or in what examples is it an issue? I can't imagine doing something like this example:
int i = 123;
object o = i; ...
8
votes
5answers
2k views
Why do some languages need Boxing and Unboxing?
This is not a question of what is boxing and unboxing,
it is rather why do languages like Java and C# need that ?
I am greatly familiar wtih C++, STL and Boost.
In C++ I could write something like ...
7
votes
2answers
289 views
Integer wrapper class and == operator - where is behavior specified?
Integer integer1 = 127;
Integer integer2 = 127;
System.out.println(integer1 == integer2);//true
integer1 = 128;
integer2 = 128;
System.out.println(integer1 == integer2);//false
I found it returns ...
7
votes
6answers
342 views
Should I use struct or class?
I am in a classic design dilemma. I am writing a C# data structure for containing a value and measurement unit tuple (e.g. 7.0 millimeters) and I am wondering if I should use a reference type or a ...
7
votes
5answers
270 views
Question about boxing and unboxing
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 ...
7
votes
3answers
323 views
What Performs Worse: Reflection or Boxing?
I'm working on creating my own DI framework that creates delegate factories as a learning exercise. My way of building typed delegates is to use expressions to create a function that calls a static ...
7
votes
4answers
211 views
Variable number of arguments without boxing the value-types?
public void DoSomething(params object[] args)
{
// ...
}
The problem with the above signature is that every value-type that will be passed to that method will be boxed implicitly, and this is ...
6
votes
1answer
71 views
Avoiding boxing by passing in single element primitive array
I'm working with an interface that takes type Object as its input. This is unfortunate for me as I have primitive data that I sometimes need to pass in through the interface. This of course forces ...
6
votes
5answers
240 views
Comparing boxed value types
Today I stumbled upon an interesting bug I wrote. I have a set of properties which can be set through a general setter. These properties can be value types or reference types.
public void SetValue( ...
6
votes
7answers
170 views
What is the difference between using the == operator and the Equals method on a boxed boolean type?
Given these two statements...
((object)false) == ((object)false)
((object)false).Equals((object)false)
The first statement returns false.
The second statement returns true.
I understand why the ...
6
votes
4answers
374 views
C# - Does using a value type with an `out` parameter cause the variable to be boxed?
I'm aware that boxing and unboxing are relatively expensive in terms of performance. What I'm wondering is:
Does passing a value type to a method's out parameter, as in the example below, cause ...
5
votes
3answers
102 views
C# - Issues with boxing / unboxing / typecasting ints. I don't understand
I'm having a hard time understanding this. Consider the following example:
protected void Page_Load(object sender, EventArgs e)
{
// No surprise that this works
Int16 firstTest = ...
5
votes
2answers
100 views
Does System.Array perform boxing on value types or not?
I recently did some rough performance measuring on List<> vs [] for an array of small structures. System.Array seemed to win hands down so I went with that.
It's only just dawned on me that ...
5
votes
2answers
261 views
How to recognize boxing/unboxing in a decompiled Scala code?
In the accepted best response to this question, there is a clear explanation why boxing happens.
However, if I decompile the code (using java decompiler) I cannot see use of ...
5
votes
3answers
187 views
Why doesn't delegate contravariance work with value types?
This snippet is not compiled in LINQPad.
void Main()
{
(new[]{0,1,2,3}).Where(IsNull).Dump();
}
static bool IsNull(object arg) { return arg == null; }
I'd like to provide you with the ...
5
votes
1answer
161 views
Unboxing uint/int without knowing what's inside the box
I have an object o that is known to be a boxed int or uint:
object o = int.MinValue
object o = (uint)int.MinValue // same bytes as above
I don't know what's in the box, all I care about is that ...
5
votes
1answer
99 views
.NET: Strange behaviour of double.Equals() when boxing
What's going on here?
int zero = 0;
double x = 0;
object y = x;
Console.WriteLine(x.Equals(zero)); // True
Console.WriteLine(y.Equals(zero)); // False
5
votes
4answers
748 views
Java automatic unboxing - is there a compiler warning?
I am a big fan of auto-boxing in Java as it saves a lot of ugly boiler plate code. However I have found auto-unboxing to be confusing in some circumstances where the Number object may be null. Is ...
5
votes
9answers
2k views
Use cases for boxing a value type in C#?
There are cases when an instance of a
value type needs to be treated as an
instance of a reference type. For
situations like this, a value type
instance can be converted into a
reference ...
5
votes
2answers
1k views
Enum Boxing and Equality
Why does this return False
public enum Directions { Up, Down, Left, Right }
static void Main(string[] args)
{
bool matches = IsOneOf(Directions.Right, Directions.Left, ...
4
votes
5answers
85 views
Is there a shorthand way to get a float from an array?
I'm a beginner with iPhone dev in Objective C and one thing I find I'm doing quite a lot is getting floats (and ints) in and out of various NSArrays
float myFloatValue = [(NSNumber *)[myArray ...
4
votes
4answers
104 views
Does boxing cause performance issues?
I'm working on a project in which we are producing a language which compiles to java. The framework we are using (xtext) makes prolific use of boxing in its generated code.
Specifically, if you have a ...