提交 89209299 编写于 作者: S shuang.kou

Merge branch 'master' of https://github.com/Snailclimb/JavaGuide

此差异已折叠。
......@@ -386,10 +386,11 @@ public class Person implements Comparable<Person> {
// TODO Auto-generated method stub
if (this.age > o.getAge()) {
return 1;
} else if (this.age < o.getAge()) {
}
if (this.age < o.getAge()) {
return -1;
}
return age;
return 0;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册