aspose file tools
The moose likes Performance and the fly likes Casting from double to int leading to in correct data for very specific numbers Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Performance
Reply Bookmark "Casting from double to int leading to in correct data for very specific numbers" Watch "Casting from double to int leading to in correct data for very specific numbers" New topic
Author

Casting from double to int leading to in correct data for very specific numbers

H Und
Greenhorn

Joined: Mar 25, 2010
Posts: 7
We just came across the following thing, which is very interesting and misleading the other program by its outcome. Could you please tell me, what is wrong with the following little program.


public class CastingClass {

static double x = 269.28;
public static void printValue(){
System.out.println("Original Value: " + x);
System.out.println("Before Casting; " + x * 100);
int i = (int) (x * 100);
System.out.println("After Casting: " + i);
}
static public void main(String[] args){
printValue();
}
}



// I am getting the following result, which is not correct.

-------------------------------------------------
Original Value: 269.28
Before Casting, but multiplying with 100: 26927.999999999996
After Casting: 26927

---------------------------------------------------------
Henry Wong
author
Sheriff

Joined: Sep 28, 2004
Posts: 14608

H Und wrote:We just came across the following thing, which is very interesting and misleading the other program by its outcome. Could you please tell me, what is wrong with the following little program.


public class CastingClass {

static double x = 269.28;
public static void printValue(){
System.out.println("Original Value: " + x);
System.out.println("Before Casting; " + x * 100);
int i = (int) (x * 100);
System.out.println("After Casting: " + i);
}
static public void main(String[] args){
printValue();
}
}



// I am getting the following result, which is not correct.

-------------------------------------------------
Original Value: 269.28
Before Casting, but multiplying with 100: 26927.999999999996
After Casting: 26927

---------------------------------------------------------



Take a look at point #20 here... http://www.coderanch.com/how-to/java/JavaBeginnersFaq


Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
 
IntelliJ Java IDE
 
subject: Casting from double to int leading to in correct data for very specific numbers
 
Threads others viewed
importance of parameter
Some Runtime vs. Compile Time SCJP 6.0 Mock Exam Questions
What is the output for the below code is different?
'Implied Decimal' format in Java for Double/Float
help me in kicking off the bug from the following code
developer file tools