01: public class Clazz {
02: public static void main(String[] args) {
03: Integer integer = new Integer(1024);
04: Long aLong = new Long(1024);
05: if (integer.equals(aLong))
06: System.out.println("eq");
07: if (integer.intValue() == aLong.longValue())
08: System.out.println("==");
09: }
10: }
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать