 |
Java int to String - Integer.toString(i) vs new Integer(i).toString() - Stack Overflow
Sometimes java puzzles me. I have a huge amount of int initializations to make. What's the real difference? Integer.toString(i) new Integer(i).toString() ... In terms of performance measurement, if you are considering the time performance then the Integer
stackoverflow.com |
 |