The unboxing tag has no wiki summary.
0
votes
0answers
10 views
Can you store floats in tagged pointers?
I read that some languages may set the lowest bit in a pointer (which are usually always zero) to indicate that the pointer in question is not a pointer at all but a directly stored integer value. ...
77
votes
2answers
2k views
Differences in auto-unboxing between Java 6 vs Java 7
Hi I have noted a difference in auto unboxing behavior between Java SE 6 and Java SE 7. I'm wondering why that is, because I can't find any documentation of changes in this behavior between these two ...
6
votes
2answers
67 views
What is the need of an intValue() method if wrappers use unboxing?
For example, look at this code:
Integer myInt = new Integer(5);
int i1 = myInt.intValue();
int i2 = myInt;
System.out.println(i1);
System.out.println(i2);
As you can see, I have two ways of ...
0
votes
0answers
34 views
Why is boxing/unboxing a necessary part of CLR? [duplicate]
why are they necessary?
what other features of CLR are based on boxing/unboxing? would it be so terrible to not have those features?
0
votes
0answers
20 views
How to check type of unboxing nullable type with value = null?
Look at this method:
Dictionary<string,object> ViewModelParams = new Dictionary<string,object>();
AddParam(string paramKey,value)
{
viewModelParams.Add(paramKey,value);
}
T ...
2
votes
4answers
92 views
How to unbox from object to type it contains, not knowing that type at compile time?
At the run-time I get boxed instance of some type. How to unbox it to underlying type?
Object obj;
String variable = "Some text";
obj = variable // boxing;
// explicit unboxing, because we know the ...
1
vote
6answers
107 views
Unboxing a null boxed object throws unexpected NullPointerException
If you run the following code,
public class Foo{
public static void main(String[] args){
int id = new Bar().getId(); // throws unexpected NullPointerException
}
private static ...
0
votes
1answer
188 views
PowerShell Invoke-Sqlcmd - Does not return DataTable or DataSet
If I do the following,
PS > $a = Invoke-Sqlcmd -ServerInstance <blah> -Database <blah> -Query "SELECT <blah>"
(where is just a placeholder for valid stuff)
Then the type ...
-2
votes
2answers
71 views
Converting a value type to a ref type is boxing and vice versa is unboxing. Value type to value type is called? [closed]
Converting a value type to a ref type is boxing and vice versa is unboxing. Value type to value type conversion is specifically called?
1
vote
1answer
91 views
How can I guarantee that my class can be unboxed as a a particular type?
I created an IValueConverter that converts a bool to a System.Windows.Visibility object (it does the opposite of BooleanToVisibilityConverter). It works fine, except when I try to use it on an ...
2
votes
1answer
85 views
Boxing & Unboxing: Why doesn't this delegate match?
Assuming the following delegate "caller" signature:
FuncCaller<T>(Func<T, bool> predicate)
and a matching method:
bool MyFunc(object o)
When T is a reference type, I can invoke ...
3
votes
2answers
134 views
How do I create an unbox instance of an ADT?
I'm having trouble finding good resources that work for how to make my data types unboxed, for use in an unboxed vector. How would I make the data type
data Color = Yellow | Red | Green | Blue | ...
2
votes
1answer
51 views
Unboxing to larger value type
The following code leads to an InvalidCastException.
object x = (short) 1;
int y = (int) x;
I know that I could cast x first to a short and then to an int, although that is not an option, as ...
2
votes
2answers
266 views
Avoid boxing & unboxing in generic class
Below is some quick code to illustrate my question. Any way to avoid this apparently unnecessary boxing/unboxing?
public class TestClass<T>
{
public T TestMethod()
{
if (typeof(T) == ...
0
votes
2answers
94 views
Automatic unboxing
I have an array of objects (object[]). All the items in this array have the same type (unknown at compile time). I need to convert this array in a typed array, that is, if the items are integers, I ...
2
votes
1answer
141 views
Unboxing freezes Winforms ComboBox
Pretty specific and weird problem here, Google and the rest couldn't give me an answer.
I have a form with two ComboBoxes, we'll say A and B. Selecting an item in A pulls some info from a database, ...
1
vote
1answer
295 views
mvc3 Reflect data annotations off a concrete class from an inteface
I am trying to abstract my view model from various types of views. The entire thing compiles without a issue but I am having issues with "reflecting" (formally known as unboxing) the data ...
1
vote
1answer
124 views
Unboxing modifies items collection
Having a problem with this Winforms project. Trying to use the SelectedIndexChanged event on a combBox that that was populated with the dictionary propList via:
comboBox1.DataSource = new ...
2
votes
1answer
86 views
scala type 'extraction'
This might not be the most correct terminology but what I mean by boxed type is Box[T] for type T. So Option[Int] is a boxed Int.
How might one go about extracting these types? My naive attempt:
...
15
votes
3answers
316 views
Why does the Java compiler sometimes allow the unboxing of null?
For example:
int anInt = null;
fails at compile time but
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
System.out.println("" + getSomeVal());
}
}
public static ...
2
votes
0answers
74 views
Densely packed tree of signals
I collect realtime signals, compute derived signals and store both raw and derived data
in a circular buffer, so I hold only last million of samples.
Sometimes I need to serialize current values for ...
11
votes
1answer
291 views
How do I write a Data.Vector.Unboxed instance in Haskell?
I've got a numeric application that does a lot of work with negative logs of probabilities, which (since probabilities range from zero to one) take the values of positive doubles, or negative infinity ...
0
votes
3answers
143 views
confusion about doublevalue() in hash tables
// Demonstrate a Hashtable
import java.util.*;
class HTDemo {
public static void main(String args[]) {
Hashtable balance = new Hashtable();
Enumeration names;
String str;
...
1
vote
2answers
218 views
Which of the following is true about the second statement? (unboxing & autoboxing)
I have looked all over the internet to try and solve this problem. Can anyone answer this correctly and explain why? Thank you so much!
Look at the following code.
Integer myNumber;
myNumber = 5;
...
4
votes
1answer
140 views
Unboxing Values Types from Objects
I've been trying to understand this paragraph, but somehow I couldn't virtualize it in my mind, some one please elaborate it little bit:
Unboxing is not the exact opposite of boxing. The unboxing ...
0
votes
1answer
115 views
How to provide a Data.Vector.Unbox instance for StablePtr's in Haskell?
I want to use the vector package to store unboxed arrays of StablePtr a
How can I use the following (or variations thereof):
ptr2Int :: Ptr a -> Int
ptr2Int (Ptr a) = I# (addr2Int# a)
...
1
vote
1answer
130 views
How to unbox a box to an ICollection with an unknown type?
I have a IRecord object that can hold objects. The name of these objects is saved in mapping as Properties. I loop through the properties and get them out of the IRecord by doing
record[property]
...
9
votes
1answer
315 views
Can I unbox a string?
What I understand unboxing is when I take a object and unbox it to valuetype like the MSDN example:
int i = 123;
object o = i;
o = 123;
i = (int)o; // unboxing
So I just was thinking, can a ...
6
votes
1answer
240 views
Do boxing and unboxing has the same performance hit?
Do boxing and unboxing has the same performance hit? Or unboxing is faster, let's say?
(If yes, can you briefly explain the main reason.)
Thanks
1
vote
9answers
721 views
type casting in c#.net
i want to know typecasting in c# .net, i have below lines of code.
int i=4
object o = i // This works properly without any typecasting becausing boxing takes place automatically
string s= i // This ...
1
vote
2answers
156 views
Haskell Converting from Array to Unboxed Array breaks rewrite rules
I am trying to convert my program from using Data.Array to Data.Array.Unboxed.
As a quick side note:
several places state that I can change "Array" to "UArray" in my code
and ADD an import of ...
3
votes
2answers
165 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
493 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 ...
5
votes
3answers
547 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 = ...
1
vote
4answers
339 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??
11
votes
1answer
247 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 ...
1
vote
4answers
310 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 ...
4
votes
2answers
391 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 ...
5
votes
1answer
128 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)
...
2
votes
3answers
312 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 ...
1
vote
0answers
52 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();
...
2
votes
2answers
137 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 ...
1
vote
4answers
282 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 ...
7
votes
1answer
173 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 ...
0
votes
1answer
137 views
Mocked interface is null
I am trying to mock a DAO with JMockit:
public interface MyDao {
Details getDetailsById(int id);
}
With this test class:
public class TestClass {
@Test
public void testStuff(final ...
5
votes
2answers
693 views
Boxed Value Type comparisons
What i'm trying to achieve here is a straight value comparison of boxed primitive types.
((object)12).Equals((object)12); // Type match will result in a value comparison,
...
5
votes
2answers
269 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 ...
5
votes
4answers
884 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 = ...
0
votes
4answers
162 views
Are arrays being transformed when using an enhanced for loop?
Does Java 5 or higher apply some of form of "boxing" to arrays? This question came to mind as the following code goes through an array as if it's an Iterable.
for( String : args ){
// Do stuff
}
7
votes
5answers
911 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( ...



