Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I multiply 10 to an Integer object and get back the Integer object?

I am looking for the neatest way of doing this.

I would probably do it this way: Get int from Integer object, multiply it with the other int and create another Integer object with this int value.

Code will be something like ...

integerObj = new Integer(integerObj.intValue() * 10);

But, I saw a code where the author is doing it this way: Get the String from the Integer object, concatenate "0" at the end and then get Integer object back by using Integer.parseInt

The code is something like this:

String s = integerObj + "0";
integerObj = Integer.parseInt(s);

Is there any merit in doing it either way?

And what would be the most efficient/neatest way in general and in this case?

share|improve this question
I'd also advise you to check if using Integer is REALLY needed. Joshua pointed that using primitives is MANY MANY times faster in Effective Java. So, if you can, stick with int. – Marcio Aguiar Sep 5 '08 at 15:54
Using Integer is actually a design constraint. The idea is I get an Integer object and I have to update that. So, can't do away with that :) – Jagmal Sep 5 '08 at 17:40

5 Answers

up vote 21 down vote accepted

With Java 5's autoboxing, you can simply do:

    Integer a = new Integer(2); // or even just Integer a = 2;
    a *= 10;
    System.out.println(a);
share|improve this answer
5  
Using the Integer constructor is not recommended. Use autoboxing or valueOf() instead... – Steven Schlansker Jan 29 '10 at 8:32

The string approach is amusing, but almost certainly a bad way to do it.

Getting the int value of an Integer, and creating a new one will be very fast, where as parseInt would be fairly expensive to call.

Overall, I'd agree with your original approach (which, as others have pointed out, can be done without so much clutter if you have autoboxing as introduced in Java 5).

share|improve this answer

The problem with the second way is the way Strings are handled in Java:

  • "0" is converted into a constant String object at compile time.
  • Each time this code is called, s is constructed as a new String object, and javac converts that code to String s = new StringBuilder().append(integerObj.toString()).append("0").toString() (StringBuffer for older versions). Even if you use the same integerObj, i.e.,

    String s1 = integerObj + "0"; String s2 = integerObj + "0";

    (s1 == s2) would be false, while s1.equals(s2) would be true.

  • Integer.parseInt internally calls new Integer() anyway, because Integer is immutable.

BTW, autoboxing/unboxing is internally the same as the first method.

share|improve this answer
Integer.parseInt(...) does not have to create an Integer object, it directly works with a primitive int. – PaĆ­lo Ebermann Jul 4 '11 at 13:41

Keep away from the second approach, best bet would be the autoboxing if you're using java 1.5, anything earlier your first example would be best.

share|improve this answer

The solution using the String method is not so good for a variety of reasons. Some are aesthetic reasons others are practical.

On a practical front more objects get created by the String version than the more normal form (as you have expressed in your first example).

On an aesthetic note, I think that the second version obscures the intent of the code and that is nearly as important as getting it to produce the result you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.