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 recently using JSON to store configuration parameters for a certain number of sub-classes of the same class. To keep a uniform interface, I have provided the parent class with public void setParameter(String, String) and String getParameter(String) methods. Each sub-class, then, casts the provided parameters to their native type and do some kind of computation using them.

Now, I am wondering: since I already store each parameter inside a HashMap, does it really makes sense to keep a separate field with the right type for each parameter? What is the computational overhead of converting String parameters to their native type each time I need them, given that I need to use them very often?

Thank you
Tunnuz

share|improve this question
2  
You could measure it? – Jeff Foster Apr 5 '11 at 8:18
1  
You can also use Float.valueOf() instead of Float.parseFloat() it will increase performance a bit, because it uses a simple caching. – bvk256 Apr 5 '11 at 8:30
1  
@bvk256: Float.valueOf doesn't do any caching. The javadoc suggests it does, but if you look at the source code (in the Sun JDK, at least), it doesn't. It just makes a new instance. The valueOf methods on the integral types do, but not the floating-point types. – Tom Anderson Apr 5 '11 at 8:44

3 Answers

up vote 3 down vote accepted

I suggest you test it. It is a fairly expensive operation if you need to do this many, many times but can be less expensive than Double.toString() or Integer.toString() if you used those to create the data in the first place.

I also suggest you only use double unless you know using a float could never ever cause a rounding issue. ;)

It is about as expensive as creating objects, like String or adding an entry to a HashMap. Unless you plan to avoid do this as well, I wouldn't worry about it.

EDIT: Similar to @Stackers' benchmark I would run the test longer and use nanoTime()

int runs = 10000000;
String val = "" + Math.PI;
long start = System.nanoTime();
for (int i = 0; i < runs; i++)
    Float.parseFloat(val);
long time = (System.nanoTime() - start) / runs;
System.out.println("Average Float.parseFloat() time was " + time + " ns.");

long start2 = System.nanoTime();
for (int i = 0; i < runs; i++)
    Double.parseDouble(val);
long time2 = (System.nanoTime() - start2) / runs;
System.out.println("Average Double.parseDouble() time was " + time2 + " ns.");

prints

Average Float.parseFloat() time was 474 ns.
Average Double.parseDouble() time was 431 ns.

BTW: I have function which reads doubles from a direct ByteBuffer which takes 80 ns. It is faster because it doesn't need a String and it doesn't create any objects. However, it is by no means trivial to do this and you have to design your core system to avoid any object creation. ;)

share|improve this answer

Measuring is as easy as:

public class PerfTest {
    public static void main(String[] args) {
        String val = "" + (float) Math.PI;
        long start = System.currentTimeMillis();
        for ( int i = 0 ; i < 100000 ; i++ ) {
            Float.parseFloat( val );
        }
        System.out.println( System.currentTimeMillis() - start + " ms." );
    }
}

62ms for 100.000 iterations.

share|improve this answer
1  
+1: I would run the test longer e.g. multi-second at least, use nanoTime() and print an average time. – Peter Lawrey Apr 5 '11 at 8:39
And do a dry run before starting the real measurement so you are not measuring any JIT overhead.Edit: – pauluss86 Feb 22 at 11:10
...putting your benchmark in a separate function (using @PeterLawrey's nanoTime() advice & 10 million iterations) and calling it twice, the first run is consistently slower (~20%) than the second run on my slow x86 netbook. – pauluss86 Feb 22 at 11:17
@pauluss86 The reason is probably optimizations performed by the virtual machine (JIT) – stacker Feb 22 at 11:53
@stacker Thanks for the reply, didn't think of that possibility. The end result is still the same though: perform the test more than once to get a better idea of real-world performance. – pauluss86 Feb 22 at 13:15

fwiw the microbenchmarks above seem a little unsafe, you'd expect hotspot to spot that val never changes & is never used. The other thing to bear in mind is that there are times when the averages (of 2 implementations) might be close together in absolute terms but where 1 has a pretty bad tail cost compared to the other, e.g. your 90th percentile value might be pretty similar but the last 10% is much worse.

For example, changing it to use a different value each time and dumping the value to stderr produces an somewhat higher average cost (~3300ns vs ~2500ns for the case where the value is reused) on my box. This is much higher than the other posts presumably because it takes some amount of time to actually get the time so the measurement is artificially inflated. This just shows one of the difficulties in doing a good microbenchmark though.

It might also be worth noting I can't measure that effect I've suggested might be present, e.g. if it were present then you might expect it to get optimised away completely. I suppose you could see what is going on via LogCompilation if you're really keen.

    int runs = 10000000;
    long totalTime = 0;
    for (int i = 0; i < runs; i++) {
        String val = "" + Math.random();
        long start = System.nanoTime();
        float f = Float.parseFloat(val);
        long end = System.nanoTime();
        System.err.println(f);
        totalTime += (end-start);
    }
    long time = totalTime / runs;
    totalTime = 0;
    for (int i = 0; i < runs; i++) {
        String val = "" + Math.random();
        long start = System.nanoTime();
        double d = Double.parseDouble(val);
        long end = System.nanoTime();
        System.err.println(d);
        totalTime += (end-start);
    }
    long time2 = totalTime / runs;
    System.out.println("Average Float.parseFloat() time was " + time + " ns.");
    System.out.println("Average Double.parseDouble() time was " + time2 + " ns.");
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.