Boxing
int a = 44335;
Integer b = Integer.valueOf(a);
Integer c = a; // automatic boxing
Unboxing
Integer c = 566;
int y = c.intValue();
int z = c; // automatic unboxing
int a = 44335;
Integer b = Integer.valueOf(a);
Integer c = a; // automatic boxing
Unboxing
Integer c = 566;
int y = c.intValue();
int z = c; // automatic unboxing
Комментариев нет:
Отправить комментарий