The Artima Developer Community
Sponsored Link

Java Buzz Forum
Friday Java Quiz: Object Identity

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Weiqi Gao

Posts: 1808
Nickname: weiqigao
Registered: Jun, 2003

Weiqi Gao is a Java programmer.
Friday Java Quiz: Object Identity Posted: Sep 28, 2007 4:23 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Weiqi Gao.
Original Post: Friday Java Quiz: Object Identity
Feed Title: Weiqi Gao's Weblog
Feed URL: http://www.weiqigao.com/blog/rss.xml
Feed Description: Sharing My Experience...
Latest Java Buzz Posts
Latest Java Buzz Posts by Weiqi Gao
Latest Posts From Weiqi Gao's Weblog

Advertisement

Kevin IM-ed me yesterday with the following question:

How come foo.getBar() == expectedBar is true yet foo.getBar().equals(expectedBar) is false?

I'll make that today's Java quiz: Have you encountered a situation in non-play code where obj1 == obj2 is true yet obj1.equals(obj2) is false?

By non-play code I mean a code base where all equals() and hashCode() overrides honor their contracts. In other words, there are no silly code like

public void equals(Object other) {
  return false;
}

Read: Friday Java Quiz: Object Identity

Topic: I Remember When... Previous Topic   Next Topic Topic: “Plug in and Win!” terrific prizes in the IntelliJ IDEAL Plugin Contest 2007!

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use