Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering why the method String.valueOf(int i) exists ? I am using this method to convert int into String and just discovered the Integer.toString(int i) method.

After looking the implementation of these methods I saw that the first one is calling the second one. As a consequence all my calls to String.valueOf(int i) involve one more call than directly calling Integer.toString(int i)

share|improve this question
2  
Just for reference purposes: stackoverflow.com/questions/3335685/integer-tostring – Bobby Jul 26 '10 at 14:25

7 Answers

up vote 13 down vote accepted

Just two different ways of doing the same thing. It may be a historical reason (can't remember if one came before the other).

share|improve this answer
2  
Yes, but if something is doing the same, does not mean that are the same thing. – Vash Jul 26 '10 at 15:29

In String type we have several method valueOf

static String   valueOf(boolean b) 
static String   valueOf(char c) 
static String   valueOf(char[] data) 
static String   valueOf(char[] data, int offset, int count) 
static String   valueOf(double d) 
static String   valueOf(float f) 
static String   valueOf(int i) 
static String   valueOf(long l) 
static String   valueOf(Object obj) 

As we can see those method are capable to resolve all kind of numbers

every implementation of specific method like you have presented: So for integers we have

Integer.toString(int i)

for double

Double.toString(dobule d)

and so on

In my opinion this is not some historical thing, but is more useful for developer to use the method valueOf from String class than from proper type, because is less changes to make when we want to change the type that we operate on.

Sample 1:

public String doStaff(int num) {

 //Do something with num 

  return String.valueOf(num);

 }

Sample2:

public String doStaff(int num) {

 //Do somenthing with num

 return Integer.toString(num);

 }

As we see in sample 2 we have to do two changes, in contrary to sample one.

My conclusion is that using the valueOf method from String class is more flexible and that why is available there.

share|improve this answer
2  
And don't forget Integer.toString(int i, int radix) that will convert to strings of bases other than 10. – Stephen P Oct 1 '10 at 21:36

One huge difference is that if you invoke toString() in a null object you'll get a NullPointerExcepection whereas using String.valueOf() you don't have to check for null.

share|improve this answer
5  
The question is about Integer.toString(int i), a static method. There are no null objects possible. – Slanec Jun 27 '12 at 12:40
2  
Integer i = null; i.toString(); // Null pointer exception!! String.valueOf(i); // No exception – manish_s Oct 16 '12 at 6:25
@Manis Kumar: Your example will not fire the String.valueOf(int i) method but String.valueOf(Object obj). Anyhow, the question is about primitive int values, where there's no possibility of null. – hleinone Nov 1 '12 at 11:47

The String class provides valueOf methods for all primitive types and Object type so I assume they are convenience methods that can all be accessed through the one class.

NB Profiling results

Average intToString = 5368ms, Average stringValueOf = 5689ms (for 100,000,000 operations)

public class StringIntTest {


    public static long intToString () {
        long startTime = System.currentTimeMillis();
        for (int i = 0; i < 100000000; i++) {
            String j = Integer.toString(i);
        }
        long finishTime = System.currentTimeMillis();

        return finishTime - startTime;
    }

    public static long stringValueOf () {

        long startTime = System.currentTimeMillis();
        for (int i = 0; i < 100000000; i++) {
            String j = String.valueOf(i);
        }
        long finishTime = System.currentTimeMillis();

        return finishTime - startTime;
    }

    public static void main(String[] args) {
        long intToStringElapsed = 0;
        long stringValueOfElapsed = 0;
        for (int i = 0; i < 10; i++) {
            intToStringElapsed += intToString();
            stringValueOfElapsed+= stringValueOf();
        }
        System.out.println("Average intToString = "+ (intToStringElapsed /10));
        System.out.println("Average stringValueOf = " +(stringValueOfElapsed / 10));
    }
}
share|improve this answer
2  
Your profiling should really have a "warm-up" period, otherwise the results can be skewed by the JIT tinkering with things. That said, a 300ms difference over 10^8 operations is so small as to be completely negligible. – Cameron Skinner Dec 10 '10 at 3:57

If you look at the source code for the String class, it actually calls Integer.toString() when you call valueOf(). Source

That being said, Integer.toString() might be a tad faster if the method calls aren't optimized at compile time (which they probably are).

share|improve this answer

You shouldn't worry about this extra call costing you efficiency problems. If there's any cost, it'll be minimal, and should be negligible in the bigger picture of things.

Perhaps the reason why both exist is to offer readability. In the context of many types being converted to String, then various calls to String.valueOf(SomeType) may be more readable than various SomeType.toString calls.

share|improve this answer
1  
Actually, such one-line calls get inlined pretty quickly. – Tassos Bassoukos Jul 26 '10 at 14:29
Even in a loop calling 1 000 000 time String.valueof() ?? – Manuel Selva Jul 26 '10 at 14:29
@Manuel: did you profile it? Have you identified that herein lies your performance problem? Are you sure you're not prematurely optimizing? @Tassos: yes, that is also very likely, but either way I wouldn't worry about it unless profiling says that there's a problem with this particular call. – polygenelubricants Jul 26 '10 at 14:30
Actually, Manuel, I'd expect a loop going 1000000 times to get inlined more often than just going once or twice. Even so, it's going to be a small portion of the time no matter how many times it loops. – corsiKa Jul 26 '10 at 14:32
No but I am sure there is no bottle neck here in my app. I am just asking this because I can't see any readability concern here and thus I think I have to use the more optimum code even if the gain is 0. Don't you agree ? – Manuel Selva Jul 26 '10 at 14:33

The implementation of String.valueOf() that you see is the simplest way to meet the contract specified in the API: "The representation is exactly the one returned by the Integer.toString() method of one argument."

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.