首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

请教为什么这个程序没有报错并且也没有运行结果呢?多谢

2012-02-01 
请问为什么这个程序没有报错并且也没有运行结果呢?谢谢!public class C{public static void main(String a

请问为什么这个程序没有报错并且也没有运行结果呢?谢谢!
public class C{
  public static void main(String args[]){
  Integer i=new Integer(1);
  Integer j=new Integer(2);
  j.compareTo(new Integer(3));
  j.compareTo(i);
  }
}

[解决办法]
public class C {
public static void main(String args[]) {
Integer i = new Integer(1);
Integer j = new Integer(2);
System.out.println(j.compareTo(new Integer(3)));
System.out.println(j.compareTo(i));
}
}
打印出来是有比较的,为什么会报错。。你也可以自己实现comparable接口

热点排行