Skip to content

Commit

Permalink
Update 第一周(2018-8-7).md
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb authored Aug 7, 2018
1 parent 008340e commit deffbef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class Person {

**==** : 它的作用是判断两个对象的地址是不是相等。即,判断两个对象是不是同一个对象。

**equals()** : 它的作用也是判断两个对象是否相等。但它一般有两种使用情况(前面第1部分已详细介绍过)
**equals()** : 它的作用也是判断两个对象是否相等。但它一般有两种使用情况:
- 情况1:类没有覆盖equals()方法。则通过equals()比较该类的两个对象时,等价于通过“==”比较这两个对象。
- 情况2:类覆盖了equals()方法。一般,我们都覆盖equals()方法来两个对象的内容相等;若它们的内容相等,则返回true(即,认为这两个对象相等)。

Expand Down

0 comments on commit deffbef

Please sign in to comment.