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 ...

learn more… | top users | synonyms

-4
votes
3answers
41 views

Declaring Linked Lists of a certain data type? [closed]

Sup guys was just reading some things about Linked Lists and I stumbled along this question: Is the following a valid or invalid statement? Explain your answer. (We can assume we are using generics) ...
1
vote
2answers
30 views

autoboxing of numeric literals : wrapper initialization vs passing method arguments inconsistency

Please consider 2 cases: //1 Short s = 10; //obviously compiles //2 takeShort(10); //error - int is not applicable //where: static void takeShort(Short s) {} I assume that case 1 is changed ...
3
votes
2answers
106 views

Is int.class.isInstance(Object) a contradiction?

Here's an example: public boolean check(Class<?> clazz, Object o) { return clazz.isInstance(o); } check(int.class, 7); // returns false Since isInstance accepts an Object, it won't work ...
0
votes
2answers
28 views

Java: is happening automatic wrapping?

Directly from the javadoc: s', 'S' general If the argument arg is null, then the result is "null". If arg implements Formattable, then arg.formatTo is invoked. Otherwise, the result is ...
0
votes
2answers
40 views

Get autobox class from type

I know this question may seem silly because I could just do this manually. But I like to have all my options in one place (and one place only). I want to set up the available options for a program ...
5
votes
2answers
73 views

Initializing with Character vs char array

This prints false List vowelsList=Arrays.asList(new char[]{'a','e','i','o','u'}); System.out.println(vowelsList.contains('a'));//false This prints true List vowelsList=Arrays.asList(new ...
0
votes
2answers
70 views

how to disable auto-boxing for java in IntilliJ IDEA

Is there a way how to disable auto-boxing for java 5, 6 in IntelliJ IDEA, to not allow developer to use this feature in IDE at least?
2
votes
4answers
85 views

Java Iterator for primitive types

I have a Java class of the following form: class Example { private byte[][] data; public Example(int s) { data = new byte[s][s]; } public byte getter(int x, int y) { return ...
3
votes
2answers
73 views

Boxing to Object type to avoid compilation failure [duplicate]

Consider the following code public class Foo { int value; public Foo (final String str, Object ... bug) { System.out.println ("Should work! 1"); } public Foo (final String str, final ...
1
vote
0answers
71 views

Compiler bug? java.lang.ClassCastException: scala.collection.mutable.WrappedArray$ofRef cannot be cast to java.lang.Integer

Scratching my head over a weird runtime error: // File: build.sbt scalaVersion := "2.10.1" // File: src/main/scala/bug/Bug.scala package bug class Foo(val args: Any*) case class Bar(id: Int) ...
6
votes
4answers
247 views

Java Singleton.getInstance() returns null?

I have this singleton I'm trying to use, but getInstance can apparently return null: class Singleton { public static final String K_LEVEL = "level"; static Singleton instance = new ...
-2
votes
2answers
95 views

Is this autoboxing?

Object ob = 8; Will the above code first wrap the int literal 8 in an Integer and then assign its reference to variable ob? Because the java language specification has nothing on this case.
7
votes
1answer
71 views

Generate warnings for autoboxing use

I would like to generate warnings for ALL autoboxing and unboxing. Has anyone found an effective way? Eclipse catches basic autoboxing errors: eg. Integer i = null; i++. But fails on anything ...
3
votes
1answer
79 views

Java no autoboxing for int for compareTo method?

class Test{ public static void main(String[] args){ int a = 1; int b = 5; Integer c = new Integer(1); Integer d = 5; //autoboxing at work ...
0
votes
3answers
53 views

regarding Collection methods for versions >=Java 5

I got a doubt and want to know which class method might have been used by JRE for removing objects in below code. Because remove is having two signatures remove(int) and remove(Object). As a part of ...
4
votes
7answers
122 views

Autoboxing performance

Why groups j=k*l and m=n*o have different performance, while first 3 groups have the same ? int a = 42; int b = 42; int c = 42; Integer d = 42; int e = 42; int f = 42; int g = 42; Integer h = 42; ...
1
vote
1answer
41 views

Autoboxing is not working for instance variables?

I defined a Double instance variable like this: public class CurrencyActivity extends Activity { private Button convertBtn; private Double SEKrate; .... public void convertCurrency() { .... ...
48
votes
6answers
1k views

Null values of Strings and Integers in Java

public class Test { public static void main(String[] args) { String s = null; String s1 = null; Integer i = null; Integer i1 = null; ...
8
votes
2answers
134 views

Wrapper classes - why integer literals fail for Long but work for anything smaller

Just trying to understand auto-boxing, which I do apart from one thing: Short s = 250; Long l = 250; The assignment to Long l fails. This, I expect, is because you cannot widen then box (i.e. it ...
2
votes
1answer
118 views

Int values are not equal when values are over 150?

Code looks like public void option() { seeTasks = tasks.getTasks(); for (int i = 0; i < seeTasks.size(); i++) { for (int b = 0; b < seeBoxes.size(); b++) { ...
1
vote
1answer
52 views

Autobox TypeDefs in Objective-C (LLVM 4+)

I have this type of Enum with TypeDef: typedef enum { ControlDisplayOptionNone = 0, ControlDisplayOptionOne = 100 } ControlDisplayOption; And I'd like to be able to put them in an array ...
1
vote
2answers
100 views

Objective-C Auto-unboxing with LLVM 4

I've been looking at autoboxing in Objective-C (here, for instance). Is there a new syntax for unboxing? For instance, I want to do this but shorter: NSArray *oneNumber = @[@1]; int one = ...
3
votes
3answers
92 views

Singletons using structs in C#

This isn't really an optimization question or anything. It's essentially a what-the-heck-is-going-on-here kind of question. The singleton pattern is used to have a single instance of an object used ...
6
votes
1answer
126 views

Why doesn't Java support coercion and autoboxing? [duplicate]

Possible Duplicate: Java: Long result = -1: cannot convert from int to long For example Integer foo = 4 and Long foo = 4L both compile, but Long foo = 4 doesn't. Is there a rationale for ...
1
vote
3answers
139 views

Lists, primitive types, and performance

I was curious about autoboxing and performance, because I'm doing a lot of speed sensitive math in my application, so I ran a little test... public static void main(String[] args) { // Some ...
1
vote
2answers
115 views

Auto-Unboxing of object [closed]

I've done a bit of research on this and it seems pretty impossible but none of the answers have been specific enough to my issue. I currently have a Stack<object> that I push objects of multiple ...
5
votes
2answers
291 views

Unwanted autoboxing magic on Numbers [closed]

The following program prints respectively 'false' and 'true': Number n = true ? new Long(1) : new Double(2.0); System.out.println(Boolean.toString(n instanceof Long)); ...
5
votes
3answers
222 views

NullPointerException through auto-boxing-behavior of Java ternary operator

I tripped across a really strange NullPointerException the other day caused by an unexpected type-cast in the ternary operator. Given this (useless exemplary) function: Integer getNumber() { ...
0
votes
3answers
142 views

How can I auto box this class?

I've the following class: public class IntegerKey extends Number implements Comparable<IntegerKey> { private Integer m_key; public IntegerKey(Integer key) { m_key = key; } ...
-7
votes
2answers
105 views

Autoboxing and Function Overloading [closed]

This is an interesting mix between autoboxing and compile-time polymorphism. Please have a look. public static void main (String[] args) { byte b = 10; my_function(b); } public void ...
0
votes
1answer
48 views

Autoboxing a character value and then returning a blank value

I have this piece of code that generates a random characters (ASCII) public char getRandChar(){ return (char)rand.nextInt(27); } and then I'll print it out using this System.out.println(new ...
1
vote
4answers
352 views

Java autoboxing rules

I am a java novice and so confused by the following example. Is it okay to think that "==" sign will compare the values between Integers and "autoboxed" Integers from int, and compare reference ...
4
votes
3answers
126 views

String Concatenation and Autoboxing in Java

When you concatenate a String with a primitive such as int, does it autobox the value first. ex. String string = "Four" + 4; How does it convert the value to a string in Java?
3
votes
1answer
116 views

Autoboxing and void

Notice how Integer.TYPE and Integer.class are both Class<Integer>, Double.TYPE and Double.class are both Class<Double>, and how you use autoboxing to convert between between int and ...
0
votes
3answers
634 views

A boxed value is unboxed and then immediately reboxed

I am getting the Findugs error "A boxed value is unboxed and then immediately reboxed". This is the Code: Employee emp = new Employee() Long lmt = 123L; emp.setLimit(Long.valueOf(lmt)); In this, ...
0
votes
3answers
90 views

About Java memory management [duplicate]

Possible Duplicate: Integer wrapper objects share the same instances only within the value 127? I have a question about the memory management in Java. When I try the following code: ...
0
votes
2answers
79 views

How to commonly address primitives and objects

Here is a utility method I have: public static Class<?>[] getTypes(Object[] objects){ Class<?>[] types = new Class<?>[objects.length]; for (int i = 0; i < ...
0
votes
0answers
113 views

Java Object of Type

I have seen this question posted a few times, but the answer does not seem to work for me. I have an Object and need to know what type this is ie (Object object) when I run the code and watch ...
1
vote
1answer
91 views

Determine if AutoBoxing was done or not

Is there a way in Java to determine if Autoboxing was done or not? For example void functionInt(Integer i) { //Determine if Integer was passed or int was passed. Is it possible? } int i = 1; int ii ...
0
votes
4answers
81 views

Need to understand Boxing in core java

I cant figure out how the int 7 is consider as object in below example. The sifer(7) is consider to be method sifer(Object o). I am not able to get it how this happened. In one of my java reference ...
10
votes
4answers
2k views

Is Eclipse Juno wrong with this ambiguous method error?

Today I've been playing around with Eclipse Juno. Coming from Helios it is a great upgrade. Everything is working fine, except one new compile error. We are using the java.net framework 'Fuse' and we ...
2
votes
1answer
86 views

Java concatenation of primitive type to String

Is the reason you can concatenate a primitive type to a String due to autoboxing?
0
votes
1answer
96 views

Autoboxing doesn't work with Parameterized types

I have a parameterized generic class X which takes a type T. On which no conditions (like T extends/implements) have been defined. class X <T> { Map<T, String> map = new ...
11
votes
1answer
224 views

Why is Int erased to Object in Scala?

In Scala, { x: Option[Int] => x } .getClass .getMethod("apply", classOf[Option[_]]) .getGenericParameterTypes returns Array(scala.Option<java.lang.Object>). I'd initially been ...
-5
votes
3answers
709 views

What is the difference between autoboxing and coercion? [closed]

I program in Java, C and Python. The rule for automatic coercions among arithmetic types have been augmented to handle the richer set of types Source: "The C Programming Language" But what ...
4
votes
4answers
301 views

Java Modifying Elements in a foreach

I'm learning Java on my own; and therefore the code below has no function other than for learning/testing. Essentially I'm trying to modify the elements of an Integer array (namely, halving them) ...
0
votes
3answers
98 views

JavaScript: String compared with numeric

We know that by default, the 'obj' below is string. Without using 'parseInt', how does JavaScript compare it with a number? obj = document.frm.weight.value; if( obj < 0 || obj > 5 ){ ...
11
votes
1answer
222 views

Implementing a fixed size, immutable, and specialized vector

For performance and safety I would like to implement a fixed-size vector which is both immutable and specialized (I need fast arithmetics). My first idea was to use the @specialized annotation ...
1
vote
2answers
221 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; ...
6
votes
1answer
239 views

Usage of @specialized in traits

I have a trait and an implementation looking like: trait Foo[A] { def bar[B >: A: Ordering]: Foo[B] } class FooImpl[A]( val a: A, val values: List[Foo[A]] ) extends Foo[A] { def bar[B >: A] ...

1 2 3