1: …… 2: public void onCreate(Bundle savedInstanceState) { 3: super.onCreate(savedInstanceState); 4: } 5: 6: public boolean equals(Object obj) { 7: if (obj == null) 8: return false; 9: int i1 = this.hashCode(); 10: int i2 = obj.hashCode(); 11: 12: if (i1 == i2) 13: return true; 14: else 15: return false; 16: }