To convert double
value into an int
value we can use type casting or using the Double.intValue()
method call. The code snippet below show you how to do it.
package org.kodejava.basic;
public class DoubleToInt {
public static void main(String[] args) {
Double numberA = 49.99;
System.out.println("numberA = " + numberA);
// Converting Double value to int value by calling
// the Double.intValue() method.
int numberB = numberA.intValue();
System.out.println("numberB = " + numberB);
// Converting Double value to int value by casting
// the primitive double value of the Double instance
int numberC = (int) numberA.doubleValue();
System.out.println("numberC = " + numberC);
double numberD = 99.99;
System.out.println("numberD = " + numberD);
// Converting double value into int value using
// type casting
int numberE = (int) numberD;
System.out.println("numberE = " + numberE);
}
}
Latest posts by Wayan (see all)
- How do I split large excel file into multiple smaller files? - April 15, 2023
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023