logo

Método Java inteiro intValue()

O intValor() método é um método de instância da classe Integer em java.lang pacote. Este método retorna o valor do número especificado como um int. É herdado da classe Number.

Sintaxe:

Segue a declaração de intValor() método:

 public int intValue() 

Parâmetro:

Tipo de dados Parâmetro Descrição
QUE QUE Este método não aceita nenhum parâmetro.

Retorna:

O intValor() O método retorna o valor numérico representado por este objeto após a conversão para o tipo int.

Exceções:

QUE

lista vs conjunto em java

Versão de compatibilidade:

Java 1.2 e superior

Exemplo 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); } } 
Teste agora

Saída:

 Value of i is: 25 

Exemplo 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()); } } 
Teste agora

Saída:

 Integer Value of X: 568 Integer Value of Y: 55 

Exemplo 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()); } } 

Saída:

 Enter The Desired Integer Value: 2342 Integer Value is: 2342 

Exemplo 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); } } 
Teste agora

Saída:

 Value is = 13