질문 : 다음 코드를 수행하면 결과는? 1 2 34567891011121314151617181920212223242526272829public class Temp { public boolean equals( Temp other ) { System.out.println("Here is Temp equals method" ); return this == other; } public static void main(String[] args) { Object o1 = new Temp(); Object o2 = new Temp(); Temp o3 = new Temp(); Temp o4 = new Temp(); if(o1.equals(o2)){ System.out.println("objects o1 and o2 ar..