public class Test {
static void methodA(Long l) {
System.out.println(l);
}
static void methodB(Object o) {
Byte b = (Byte) o;
System.out.println(b);
}
public static void main(String[] args) {
byte b = 5;
methodA(b); // 1
methodB(b); // 2
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать