Strange double-to-string conversion

醉酒当歌 提交于 2019-12-26 01:29:57

问题


I am using the following code to populate a Spinner in one of my Activities...

    for( double i = 0; i < 10 ; i+=0.1 ) {
        rVoltsList.add( Double.toString( i ) );
    }
    Spinner rVoltsSpinner = (Spinner) findViewById( R.id.recloseVoltsSpinner );
    ArrayAdapter<String> rVoltsAdapter = new ArrayAdapter<String>( this, android.R.layout.simple_spinner_item, rVoltsList );
    rVoltsSpinner.setAdapter( rVoltsAdapter );

I was assuming this would give me a list as follows : 0.0, 0.1, 0.2, 0.3, 0.4, and so on. However, this is what the list looks like when I run my program:

0.0
0.1
0.2
0.30000000000000000000000004
0.4
0.5
0.6
0.7
0.79999999999999999999
0.89999999999999999999
0.99999999999999999999
1.09999999999999999999
1.2
1.3
and this goes on until 9.99999999999999999998

any ideas?


回答1:


Use this:

rVoltsList.add( String.format("%.1f", i) );

The problem is that Double.toString(i) will not round.

The strange values are due to the fact that 0.1 (base 10) does not have an exact representation as a double in Java, so every time you add it to the loop variable, you are adding something a bit different than what you think (if you'll pardon the pun).

The same issue of rounding suggests that you should not be using a double as a loop variable. You are very unlikely to exactly hit your loop limit exactly. I would rewrite your loop as follows:

for( int i = 0; i < 100 ; ++i ) {
    rVoltsList.add( String.format("%.1f", i / 10.0) );
}



回答2:


DecimalFormat dtime = new DecimalFormat("#.#"); 

for( double i = 0; i < 10 ; i+=0.1 ) 
{   
    String i2= Double.valueOf(dtime.format(i));
    rVoltsList.add( Double.toString( i2 ) );
}


来源:https://stackoverflow.com/questions/11209328/strange-double-to-string-conversion

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!