Java - float을 int로 변환

Java에서 float을 int로 변환하는 다양한 방법을 소개합니다.

  • 타입 캐스팅
  • Math 라이브러리

1. 타입 캐스팅

float 타입의 객체를 (int)로 형변환하여 int 타입의 객체로 변환하는 방법입니다. 아래 예제의 결과를 보시면 소수는 모두 버림합니다.

public class ConvertFloatToInt {

    public static void main(String[] args) {

        float f1 = 1.45f;
        int n1 = (int) f1;

        float f2 = 1.95f;
        int n2 = (int) f2;

        float f3 = -1.45f;
        int n3 = (int) f3;

        float f4 = -1.95f;
        int n4 = (int) f4;

        System.out.println("n1: " + n1);
        System.out.println("n2: " + n2);
        System.out.println("n3: " + n3);
        System.out.println("n4: " + n4);
    }
}

Output:

n1: 1
n2: 1
n3: -1
n4: -1

2. Math : round()

Math 라이브러리의 round()를 이용하여 float을 int로 변환할 수 있습니다. round()는 실수를 반올림하여 정수로 변환합니다. 결과를 보시면 반올림하여 변환하는 것을 알 수 있습니다.

public class ConvertFloatToInt2 {

    public static void main(String[] args) {

        float f1 = 1.45f;
        int n1 = Math.round(f1);

        float f2 = 1.95f;
        int n2 = Math.round(f2);

        float f3 = -1.45f;
        int n3 = Math.round(f3);

        float f4 = -1.95f;
        int n4 = Math.round(f4);

        System.out.println("n1: " + n1);
        System.out.println("n2: " + n2);
        System.out.println("n3: " + n3);
        System.out.println("n4: " + n4);
    }
}

Output:

n1: 1
n2: 2
n3: -1
n4: -2

3. Math : ceil()

Math 라이브러리의 ceil()를 이용하여 float을 int로 변환할 수 있습니다. ceil()는 실수를 올림하여 정수로 변환합니다. 결과를 보시면 올림하여 변환되는 것을 알 수 있습니다.

public class ConvertFloatToInt3 {

    public static void main(String[] args) {

        float f1 = 1.45f;
        int n1 = (int) Math.ceil(f1);

        float f2 = 1.95f;
        int n2 = (int) Math.ceil(f2);

        float f3 = -1.45f;
        int n3 = (int) Math.ceil(f3);

        float f4 = -1.95f;
        int n4 = (int) Math.ceil(f4);

        System.out.println("n1: " + n1);
        System.out.println("n2: " + n2);
        System.out.println("n3: " + n3);
        System.out.println("n4: " + n4);
    }
}

Output:

n1: 2
n2: 2
n3: -1
n4: -1

4. Math : floor()

Math 라이브러리의 floor()를 이용하여 float을 int로 변환할 수 있습니다. floor()는 실수를 버림하여 정수로 변환합니다. 결과를 보시면 버림하여 변환되는 것을 알 수 있습니다.

public class ConvertFloatToInt4 {

    public static void main(String[] args) {

        float f1 = 1.45f;
        int n1 = (int) Math.floor(f1);

        float f2 = 1.95f;
        int n2 = (int) Math.floor(f2);

        float f3 = -1.45f;
        int n3 = (int) Math.floor(f3);

        float f4 = -1.95f;
        int n4 = (int) Math.floor(f4);

        System.out.println("n1: " + n1);
        System.out.println("n2: " + n2);
        System.out.println("n3: " + n3);
        System.out.println("n4: " + n4);
    }
}

Output:

n1: 1
n2: 1
n3: -2
n4: -2

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha