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 get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024