Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

99
votes
9answers
7k views

Performance surprise with “as” and nullable types

I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write: object o = ...; int? x = o as int?; if ...
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.
31
votes
7answers
572 views

How is it that an enum derives from System.Enum and is an integer at the same time?

Edit: Comments at bottom. Also, this. Here's what's kind of confusing me. My understanding is that if I have an enum like this... enum Animal { Dog, Cat } ...what I've essentially done ...
13
votes
3answers
4k views

Why can't I unbox an int as a decimal?

I have an IDataRecord reader that I'm retrieving a decimal from as follows: decimal d = (decimal)reader[0]; For some reason this throws an invalid cast exception saying that the "Specified cast is ...
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, ...
11
votes
1answer
130 views

Efficient handling of sparsely missing data in Haskell

I am trying to use Haskell for data analysis. Because my datasets are reasonably large (hundreds of thousands and potentially millions of observations), I would ideally like to use an unboxed data ...
9
votes
6answers
564 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 ...
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
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 ...
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
243 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
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 ...
6
votes
2answers
171 views

Of which things should I take care if I'm using unboxed type (like Int#) in Haskell / GHC?

I'm trying to write a small script which parses and executes Brainfuck code, to understand the GHC options of optimization, I'm trying to optimize the code in order to be a bit faster and to ...
6
votes
1answer
690 views

unboxing, (sparse) matrices, and haskell vector library

I would like to manipulate matrices (full or sparse) efficiently with haskell's vector library. Here is a matrix type import qualified Data.Vector.Unboxed as U import qualified Data.Vector as V ...
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
1answer
78 views

Auto-unboxing in Scala pattern-match

In the following code, I am getting a compilation error stating that I have a type mismatch on 'x': val someRef: java.lang.Long = 42L someRef match { case x: Long => println("The answer: " + x) ...
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
4answers
749 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 ...
4
votes
1answer
115 views

Tools to find boxing in code

Background: I'm developing for the xbox and am at the optomising stage. I need to cut down on object allocations. One place to start is finding out where (un)boxing occurs. I'm very new to IL (in ...
4
votes
4answers
224 views

Are these boxing/unboxing examples

Are 2 and 3 boxing/unboxing examples? 1) The documentation example: int i = 123; object iBoxed = i; i = (int) iBoxed; 2: Is the boxing/unboxing as well? int i = 123; object iBoxed = i; i = ...
4
votes
3answers
355 views

Integer auto-unboxing and auto-boxing gives performance issues?

We are currently doing some iterations and other operations using x++; where x is an Integer and not an int. Operations may be repeated throughout some user operations on our system but nothing too ...
4
votes
4answers
404 views

In C#/.NEt does a dynamic type take less space than object?

I have a console application that allows the users to specify variables to process. These variables come in three flavors: string, double and long (with double and long being by far the most commonly ...
4
votes
3answers
226 views

Why does unboxing enums yield odd results?

Consider the following:: Object box = 5; int @int = (int)box; // int = 5 int? nullableInt = box as int?; // nullableInt = 5; StringComparison @enum = (StringComparison)box; // enum = ...
4
votes
3answers
118 views

Does unboxing just return a pointer to the value within the boxed object on the heap?

I this MSDN Magazine article, the author states (emphasis mine): Note that boxing always creates a new object and copies the unboxed value's bits to the object. On the other hand, unboxing ...
4
votes
4answers
339 views

Unboxing to unknown type

I'm trying to figure out syntax that supports unboxing an integral type (short/int/long) to its intrinsic type, when the type itself is unknown. Here is a completely contrived example that ...
4
votes
5answers
613 views

Anonymous Types

I have a Dictionary(TKey, TValue) like Dictionary<int, ArrayList> Deduction_Employees = new Dictionary<int, ArrayList>(); and later I add to that array list an anonymous type like ...
3
votes
2answers
90 views

Looking for «instance (Enum a, Bounded a) => IArray UArray a»

I'm looking for a way to have Enum a => UArray a (which makes sense to me as we can trivially map enums to Int and back by toEnum and fromEnum) So far I tried to steal code of UArray Int from ...
3
votes
4answers
260 views

Does unboxing occur when a class's value-type member is referenced?

I read What is boxing and unboxing and what are the trade offs? but can't understand one thing. Suppose I have a class: class MyClass { public int Value { get; set; } } And I want to get value ...
3
votes
2answers
83 views

What performance improvements have been made to the boxing and unboxing operations in the CLR, if any?

I attended a seminar a few months ago and the speaker made the statement that the general cost of a boxing or unboxing operation has been reduced since .NET 1.1. I've looked through my (poor) notes ...
3
votes
1answer
192 views

Boxing and unboxing when using out and ref parameters

Does boxing/unboxing occur when a method accepts an out/ref parameter of a ValueType?
3
votes
2answers
83 views

Unboxing issues

I have a class that extends the LinkedList class. Here's an excerpt of the code: class SortedList<Integer> extends LinkedList<Integer> { int intMethod(Integer integerObject){ ...
3
votes
5answers
410 views

Box and UnBox what does it means? [closed]

Possible Duplicates: Why do we need boxing and unboxing in C#? What is boxing and unboxing and what are the trade offs? In C# what doe sit means: "Box and UnBox"? Here an extract from ...
3
votes
2answers
450 views

Generic method, unboxing nullable enum

I've made the following extension method ... public static class ObjectExtensions { public static T As<T>(this object pObject, T pDefaultValue) { if (pObject == null || pObject ...
3
votes
2answers
298 views

How do I avoid boxing/unboxing when extending System.Object?

I'm working on an extension method that's only applicable to reference types. I think, however, it's currently boxing and unboxing the the value. How can I avoid this? namespace System { public ...
3
votes
2answers
467 views

C# compiler + generic code with boxing + constraints

Let's examine the MSIL code generated for the following generic method: public static U BoxValue<T, U>(T value) where T : struct, U where U : class { return value; } Look: .method ...
3
votes
4answers
680 views

What's the best approach to solve the c# unboxing exception when casting an object to a valuetype?

I just converted a code snippet from VB.NET to C# and stumbled over this issue. Consider this code: Dim x As Integer = 5 Dim y As Object = x Dim z As Decimal = CType(y, Decimal) No ...
2
votes
3answers
116 views

Directly unboxing a boxed int to short

I have made a conversion method for handling the database values returned by procs. It looks like this: public static T GetVerifiedValue<T>(this IDataRecord record, int index) { object ...
2
votes
2answers
51 views

How to learn from which ip a successfull login has occured?

I use Spring Security 3. I have follewing method: public class CustomUsernamePasswordAuthenticationFilter extends UsernamePasswordAuthenticationFilter { @Override protected void ...
2
votes
2answers
80 views

How to get the best performance when passing a Value Type as a Reference Type in C#/.NET?

If you must pass a value type to a method, but for some reason, it must be passed as a reference type, is it faster to: Pass it as an object Pass is as a ValueType Pass it as a generic wrapper I ...
2
votes
4answers
110 views

Does a ValueType get boxed when is declared as part of a class?

Considering this class: public class Foo { public Int32 MyField; } I guess the "MyField" member is not on the thread stack because as it could be accessed by several threads, it has to be ...
2
votes
10answers
1k views

Why does autoboxing in Java allow me to have 3 possible values for a boolean?

Reference: http://java.sun.com/j2se/1.5.0/docs/guide/language/autoboxing.html "If your program tries to autounbox null, it will throw a NullPointerException." javac will give you a compile-time ...
2
votes
2answers
263 views

Proper way to unbox database values

I'm working with an older Oracle database, and I feel there's likely a better way to go about unboxing the values I retrieve from the database. Currently, I have a static class full of different ...
2
votes
5answers
137 views

Internal compiler error ArrayIndexOutOfBoundsException: -1 … generateUnboxingConversion

I got some weird exception when trying to compile this: Byte b = 2; if (b < new Integer(5)) { ... } Is it a valid check (unboxing-implicit cast - unboxing)?
2
votes
3answers
809 views

C# boxing question

First, two examples: // This works int foo = 43; long lFoo = foo; // This doesn't object foo = (int)43; long? nullFoo = foo as long?; // returns null long lFoo = (long)foo; // throws ...
1
vote
4answers
200 views

Is Boxing/unboxing implemented through late or early binding(ie. at runtime or compiletime)?

For eg: int i=10; object o = i; //late or early?? Similarly, object o = "11"; int i = (int)o;//late or early??
1
vote
4answers
73 views

Best way to convert object typed data to value type

I was tasked to create code that would fetch data from database using data reader and I'm curious of what is going to be the best practice between the 3 methods that I could use below to convert data ...
1
vote
0answers
16 views

Casting Html Controls (.NET 2.0)

I have used the below code to cast controls: List<Dictionary<string, object>> result = new List<Dictionary<string, object>>(count); div = new HtmlGenericControl(); ...
1
vote
4answers
113 views

Which is better in terms of performance, implicit (auto) unboxing or explicit unboxing?

To put it in code - which has better performance (if there is a difference at all)? Given this: public class Customer { .... public Boolean isVIP(){...} ... } Which is faster? public ...

1 2