public class Test {
public static void main(String args[]) {
byte a = 1;
byte b = ++a;
byte c = -a;
System.out.print(a);
System.out.print(b);
System.out.print(c);
}
}
So minus in front of a variable implicitly converts it to an int?
2023 Feb 19, 11:23:29 AM
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать