Ejemplo 1: conversión de Java a int
//In java, you can cast to any primitive type by putting (primitiveType)
//before whatever you're casting to.
private static int myInt = (int)myDouble;
Ejemplo 2: cómo convertir int en entero
public class IntToIntegerExample {
public static void main(String[] args) {
int i = 10;
Integer intObj = new Integer(i);
System. out. println(intObj);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)