Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class ObjectEquals {
  2.     public static void main(String[]args){
  3.         Student st = new Student();
  4.         Student st2 = st ;
  5.         System.out.println(st==st2);
  6.         System.out.println(st.equals(st2));
  7.     }
  8. }
  9.  
  10. class Student {
  11.    
  12. }