黑马程序员技术交流社区

标题: compare的疑问 [打印本页]

作者: YC匪帮    时间: 2015-9-28 10:51
标题: compare的疑问
  1.         public int compare(Object o1, Object o2) {
  2.                 if(o1 instanceof Student1 & o2 instanceof Student1){
  3.                         Student1 s1 = (Student1)o1;
  4.                         Student1 s2 = (Student1)o2;
  5.                         if(s1.getAge() > s2.getAge()){
  6.                                 return -1;
  7.                         }else if(s1.getAge() < s2.getAge()){
  8.                                 return 1;
  9.                         }
  10.                 }
  11.                 return 0;
  12.         }
复制代码

这段代码里如果o1或者o2不是student1的对象,是不是就返回它俩个相等啊?
有点晕乎了.....
作者: 大大大卷    时间: 2015-9-28 11:58
返回0啊,看你怎么使用标记了,
作者: boboyuwu    时间: 2015-9-28 12:28
如果不是student对象会返回  异常  castException    没有student怎么调用compare?
作者: YC匪帮    时间: 2015-9-28 16:11
boboyuwu 发表于 2015-9-28 12:28
如果不是student对象会返回  异常  castException    没有student怎么调用compare?

那if还有个毛用?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2