A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 孟庆全 初级黑马   /  2012-9-20 00:01  /  1412 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Test {
  public static void main(String[] args) {
    Number x = new Integer(3);
    System.out.println(x.intValue());
    System.out.println(x.compareTo(new Integer(4)));
  }
}

3 个回复

倒序浏览
number作为Integer的父类是没有compareTo方法的,Integer是实现了Comparable接口得到的,要么直接用Integer x 作为变量x的类型,要么就需要转换一下System.out.println(((Comparable) x).compareTo(new Integer(4)));

好好看看吧  呵呵
回复 使用道具 举报
哦,终于明白了 ,  好给力!
回复 使用道具 举报
public class Test
{
          public static void main(String[] args)
         {
                   Number x = new Integer(3);
                    System.out.println(x.intValue());
                    System.out.println(x.equals(new Integer(4)));
         }
}
compareTo改成equals就好了,如非要用compareTo寻实现接口comparable如楼上所说的那样。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马