If I have two reference object with different name in main class Such as:
AA aa = new AA();
AA bb = new AA();
and if i compare it using aa.equals(bb); then what it will return.
and if i will use
BB bb = new BB();
and i compare it using aa.equals(bb);
Then what is difference both of them
オブジェクトの null 動作を常に混乱させていました。