Tagged Questions
Boxing is the process of using an object to wrap a primitive value so that it can be used as a reference object; extracting a previously-boxed primitive is called unboxing. Auto(un)boxing is a form of "syntactic sugar" where the compiler automatically performs (un)boxing for you, allowing you to use value and referenced types interchangeably.
30
votes
3answers
1k views
Booleans, conditional operators and autoboxing
Why does this throw NPE
public static void main(String[] args) throws Exception {
Boolean b = true ? returnsNull() : false; // NPE on this line.
System.out.println(b);
}
public static ...
29
votes
13answers
2k views
Why do people still use primitive types in Java?
Since Java 5, we've had boxing/unboxing of primitive types so that int is wrapped to be java.lang.Integer, and so and and so forth. I see a lot of new Java projects lately (that definitely require a ...
21
votes
11answers
3k views
Why can't I call toString() on a Java primitive?
I want to convert a primitive to a string, and I tried:
myInt.toString();
This fails with the error:
int cannot be dereferenced
Now, I get that primitives are not reference types (ie, not an ...
20
votes
6answers
2k views
Why does autoboxing make some calls ambiguous in Java?
I noticed today that auto-boxing can sometimes cause ambiguity in method overload resolution. The simplest example appears to be this:
public class Test {
static void f(Object a, boolean b) {}
...
17
votes
5answers
526 views
Weird Java Boxing
(Sorry if this is a duplicate, I have no idea how I would even search for this)
I just saw code similar to this:
public class Scratch
{
public static void main(String[] args)
{
...
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
2answers
665 views
Is it guaranteed that new Integer(i) == i in Java?
Consider the following snippet:
int i = 99999999;
byte b = 99;
short s = 9999;
Integer ii = Integer.valueOf(9); // should be within cache
System.out.println(new Integer(i) == i); ...
14
votes
6answers
251 views
Why can the as operator be used with Nullable<T>?
According to the documentation of the as operator, as "is used to perform certain types of conversions between compatible reference types". Since Nullable is actually a value type, I would expect as ...
13
votes
7answers
303 views
Why can Integer and int be used interchangably?
I am confused as to why Integer and int can be used interchangeably in Java even though one is a primitive type and the other is an object?
For example:
Integer b = 42;
int a = b;
Or
int d = 12;
...
12
votes
2answers
593 views
Why are so few things @specialized in Scala's standard library?
I've searched for the use of @specialized in the source code of the standard library of Scala 2.8.1. It looks like only a handful of traits and classes use this annotation: Function0, Function1, ...
12
votes
13answers
382 views
Why aren't Integers cached in Java?
I know there are similar posts on the topic, but they don't quite address my question. When you do:
Integer a = 10;
Integer b = 10;
System.out.println("a == b: " + (a == b));
This will (apparently) ...
10
votes
5answers
527 views
Java question about autoboxing and object equality / identity
public class Main {
/**
* @param args the command line arguments */
public static void main(String[] args) {
// TODO code application logic here
int a1 = 1000, a2 = ...
10
votes
3answers
3k views
Why does int num = Integer.getInteger(“123”) throw NullPointerException?
the following code throws NPE for me:
int num = Integer.getInteger("123");
is my compiler invoking getInteger on null since it's static? that doesn't make any sense!
can someone explain what's ...
10
votes
3answers
2k views
autoboxing vs manual boxing java
Why second code is faster?
Map<Integer,Double> map=new HashMap<Integer,Double>();
for(int i=0;i<50000;i++)
for(double j=0.;j<10000;j++){
map.put(i,j);
}
...
10
votes
2answers
5k views
When comparing two Integers in Java does auto-unboxing occur?
I know that if you compare a boxed primitive Integer with a constant such as:
Integer a = 4;
if (a < 5)
a will automatically be unboxed and the comparison will work.
However, What happens when ...
10
votes
4answers
1k views
What code does the compiler generate for autoboxing?
When the Java compiler autoboxes a primitive to the wrapper class, what code does it generate behind the scenes? I imagine it calls:
The valueOf() method on the wrapper
The wrapper's constructor
...
8
votes
3answers
131 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
3answers
2k views
Is this really widening vs autoboxing?
I saw this in another question in reference to shortcomings of the java spec:
There are more shortcomings and this is a subtle topic. Check this out:
public class methodOverloading{ ...
7
votes
3answers
161 views
Why doesn't autoboxing overrule varargs when using method overloading in Java 7?
We have a class LogManager in our Java project which looks like this:
public class LogManager {
public void log(Level logLevel, Object... args) {
// do something
}
public void ...
7
votes
2answers
247 views
How to spot boxing/unboxing in Scala
Following a suggestion by extempore recently about how to get scala to tell me whether there was boxing going on by looking at the bytecode, I created this class:
class X { def foo(ls : Array[Long]) ...
7
votes
7answers
6k views
How do I convert Double[] to double[]?
I'm implementing an interface that has functionality similar to a table that can contain an types of objects. The interface specifies the following function:
double[] getDoubles(int columnIndex);
...
7
votes
6answers
5k views
Java: What's the difference between autoboxing and casting?
This question is about "Why does autoboxing make some calls ambiguous in Java?"
But reading through the answers, there are a number of references to casting and I'm not sure I completely understand ...
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
3answers
333 views
strange Java NullPointerException with autoboxing
Run the following Java code:
boolean b = false;
Double d1 = 0d;
Double d2 = null;
Double d = b ? d1.doubleValue() : d2;
Why is there a NullPointerException?
6
votes
1answer
148 views
Auto-(un)boxing fail for compound assignment
Thanks to the implicit casting in compound assignments and increment/decrement operators, the following compiles:
byte b = 0;
++b; b++; --b; b--;
b += b -= b *= b /= b %= b;
b <<= b >>= b ...
6
votes
6answers
561 views
Why can't the compiler/JVM just make autoboxing “just work”?
Autoboxing is rather scary. While I fully understand the difference between == and .equals I can't but help have the follow bug the hell out of me:
final List<Integer> foo = ...
6
votes
2answers
527 views
Java: Why isn't autoboxing happening here?
This gives me an error:
int[] l = new int[] {0, 2, 192, -1, 3, 9, 2, 2};
int[] l2 = new int[] {9001, 7, 21, 4, -3, 11, 10, 10};
int[] l3 = new int[] {5, 5, 5, 64, 21, 12, 13, 200};
...
6
votes
3answers
280 views
build tool to detect autoboxing?
Does anyone know of any style checkers or build tools that would flag autoboxing and unboxing from the build server?
I already have the eclipse option to flag it on my end, but not everyone in the ...
6
votes
5answers
21k views
Java: Integer value comparison
I'm a newbie Java coder and I just read a variable of an integer class can be described 3 different ways in the api. I have the following code..
if (count.compareTo(0)) {
...
6
votes
8answers
5k views
Java: Array of primitive data types does not autobox
I have a method like this:
public static <T> boolean isMemberOf(T item, T[] set)
{
for (T t : set) {
if (t.equals(item)) {
return true;
}
}
return false;
...
5
votes
6answers
95 views
Autoboxing in Java
How does following expression evaluated?
Student class :
public class Student
{
private Integer id;
// few fields here
public Integer getId()
{
return id;
}
public ...
5
votes
4answers
114 views
Why is autoboxing/unboxing failing here?
In the program below, the result is that 0.0 is considered less than Double.MIN_VALUE. Why?
We have a solution (work with Doubles only and use compareTo) and I want to understand why unboxing is ...
5
votes
5answers
205 views
Comparing doubles in Java gives odd results
I really can'get my head around why the following happens:
Double d = 0.0;
System.out.println(d == 0); // is true
System.out.println(d.equals(0)); // is false ?!
This however works as expected:
...
5
votes
6answers
689 views
How does the Java Boolean wrapper class get instantiated?
In java, I can write code like this
Boolean b = true ;
And it will work. I now have an object that holds the value "true".
How does that work? Why don't I have to pass the value through a ...
5
votes
1answer
415 views
Java auto boxing/unboxing wierdness [closed]
Possible Duplicates:
Booleans, conditional operators and autoboxing
Java, Google Collections Library; problem with AbstractIterator?
The code below produces a NPE:
Integer test = null;
...
5
votes
3answers
194 views
Initializing a Double object with a primitive double value
What is happening when a java.lang.Double object is initialized without using a call to the constructor but instead using a primitive? It appears to work but I'm not quite sure why. Is there some ...
5
votes
14answers
2k views
Java: Is it ok to set Integer = null?
I have a function that returns an id number if the argument exists in the database. If not, it returns null. Is this begging for a null pointer exception? Negative id numbers are not permitted, but I ...
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 ...
5
votes
4answers
776 views
Boxed Primitives and Equivalence
So I was asked this question today.
Integer a = 3;
Integer b = 2;
Integer c = 5;
Integer d = a + b;
System.out.println(c == d);
What will this program print out? It returns true. I answered it ...
5
votes
1answer
336 views
Userland autoboxing?
Is it possible to implement autoboxing for your own classes?
To illustrate my example, this is what I might want to write:
Foo foo = "lolcat";
And this is what Java would do (as per my own ...
4
votes
1answer
126 views
Why auto-boxing marked as a warning?
I understand that auto un-boxing should be done with care because the reference that is being un-boxed can be null. Why is auto-boxing marked as warning as well? Are there some pitfalls I am missing ...
4
votes
3answers
248 views
Which is better: letting Java do autoboxing or using valueOf()
I am just wondering is there any difference in letting java autobox say an integer:
Integer myInteger = 3; // This will call Integer.valueOf()
or having your code as
Integer myInteger = ...
4
votes
4answers
277 views
Autoboxing/widening occurs in Short a=3 but not in Float a=3;
I understand that the following code won't work
Float a=3
because its translated as Float a=Integer.valueOf(3). We'll have a Float reference on the LHS and an Integer object on the RHS, which is ...
4
votes
4answers
800 views
java: boolean instanceOf Boolean?
I'm a bit confused: I have a function, that takes an Object as argument. But the compiler does not complain if I just pass a primitive and even recognizes a boolean primitive as Boolean Object. Why is ...
4
votes
3answers
970 views
Performance impact of autoboxing
Usually the compiler generates code to perform boxing and unboxing. But what does the compiler, if the boxed values are not needed? Is the (Oracle standard) compiler smart enough to optimize it away?
...
4
votes
6answers
252 views
java.lang.Object o = 1;//why does this compile?
I was doing one of these online Java tests and I was asked this question:
Q: Indicate correct assignment:
Long l = 1;
Double d = 1;
Integer i = 1;
String s = 1;
Object o = "1";
...
4
votes
9answers
1k views
Autoboxing: So I can write: Integer i = 0; instead of: Integer i = new Integer(0);
Autoboxing seems to come down to the fact that I can write:
Integer i = 0;
instead of:
Integer i = new Integer(0);
So, the compiler can automatically convert a primitive to an Object.
Is that ...
3
votes
8answers
132 views
How does == compare memory location?
I have been told to never use == for strings but for everything else because .equals would compare the values rather than the instances of the object. (Which I understand the difference of).
...
3
votes
2answers
95 views
How do I represent the boxed Double in pure Scala?
In Scala there are 2 representations of double-precision numbers, one is an AnyVal, the other AnyRef. On the JVM they are mapped to the primitive double and the class java.lang.Double respectively.
...
3
votes
3answers
152 views
How to match classes of “boolean” types and “Boolean” types?
Consider the following code:
object U { def foo(s:String) = true }
val boolType = Class.forName("java.lang.Boolean")
val retType = U.getClass.getMethods.find(_.getName == ...