Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Double class intValue()

I am trying to convert a double variable to int But I don't know how to do it. Even tried google. I don't understand the answers posted there. Can anyone please help me?

2 Answers

Kourosh Raeen
Kourosh Raeen
23,733 Points

One option is to cast it to an int. Another option is to use the Double wrapper class and call its intValue() method:

public class DoubleToInt {

  public static void main(String[] args) {
    double doubleValue = 13.4;
    System.out.println("Double value: " + doubleValue);

    // casting to an int
    int intValue = (int) doubleValue;    
    System.out.println("Int value: " + intValue);

    // using the Double wrapper class 
    Double doubleObject = doubleValue;
    intValue = doubleObject.intValue(); 
    System.out.println("Int value: " + intValue);
  }
}

Thanks Kourosh Raeen