그만큼 정수값() 메소드는 Integer 클래스의 인스턴스 메소드입니다. java.lang 패키지. 이 메서드는 지정된 숫자의 값을 int로 반환합니다. 이는 Number 클래스에서 상속됩니다.
통사론:
다음은 선언문이다. 정수값() 방법:
public int intValue()
매개변수:
데이터 형식 | 매개변수 | 설명 |
---|---|---|
저것 | 저것 | 이 메서드는 어떤 매개변수도 허용하지 않습니다. |
보고:
그만큼 정수값() 메소드는 int 유형으로 변환된 후 이 객체가 나타내는 숫자 값을 반환합니다.
예외:
저것
자바 설정
호환성 버전:
자바 1.2 이상
실시예 1
public class IntegerIntValuetExample1 { public static void main(String[] args) { Integer object = new Integer(25); // returns the value of this Integer as an int int i = object.intValue(); System.out.println('Value of i is: ' + i); } }지금 테스트해보세요
산출:
Value of i is: 25
실시예 2
public class IntegerIntValuetExample2 { public static void main(String[] args) { // get number as float Float x = new Float(568f); // print the value as int System.out.println('Integer Value of X: '+x.intValue()); // get number as double Double y = new Double(55.76); // print the value as int System.out.println('Integer Value of Y: '+y.intValue()); } }지금 테스트해보세요
산출:
Integer Value of X: 568 Integer Value of Y: 55
실시예 3
import java.util.Scanner; public class IntegerIntValuetExample3 { public static void main(String[] args) { // input number from console System.out.print('Enter The Desired Integer Value: '); Scanner readInput = new Scanner(System.in); int i = readInput.nextInt(); readInput.close(); Integer myValue = new Integer(i); System.out.println('Integer Value is: ' + myValue.intValue()); } }
산출:
Enter The Desired Integer Value: 2342 Integer Value is: 2342
실시예 4
public class IntegerIntValuetExample4 { public static void main(String[] args) { int x = 66; int y = 5; Integer i = new Integer(x); int result = i.intValue()/y; System.out.println('Value is = '+result); } }지금 테스트해보세요
산출:
Value is = 13