+ 2
Condition is wrong pliz help
eg class A{ } class B{ public static void main(){ int a; A aa = new A() ; If (a == aa){ } } }
2 Respostas
+ 5
Yep, different datatypes don't match
+ 3
a is an primitve type integer, while aa is of type A.
integer =/= A
you'll always get false.