最赞回答 / 慕斯1379455
//书名查找类package com.democ2;import java.util.*;public class Bookname { public void run(){ System.out.println("请浏览书籍:"); String[] bookname={"论语","三字经","诗经","西游记","水浒传","三国演义","红楼梦"}; System.out.println(Arrays.toString(bookname));//打印输出系统中的丛书 int j...
2017-07-13
最赞回答 / qq_恍嘫瞬间_0
int I=3,J=1; for(int rank=0;rank<4;rank++) { for(int i=I--;i>0;i--) { System.out.print(" "); } for(int j=J++;j>0;j--) { System.out.print("*"); } System.ou...
2017-07-12
已采纳回答 / 慕粉2123195469
when you type into a line of words or codes,please end with "\n";for example:System.out.println("please enter a number:");Scanner s = new Scanner(System.in); String line = s.nextLine(); because nextLine()自动读取了被next()去掉的Enter作为他的结束符
2017-07-11
已采纳回答 / 慕粉13685516540
有啊,你第一个和第三个都是多态表示的,即父类引用的是子类的实例,我就简单对上面两个做一个比较,下面同理,第一个中的list只能使用List中的方法,调用子类方法就会报错,第二个可以使用本类和自称父类中的方法
2017-07-11
已采纳回答 / qq_StarFlower_0
重写equals语句是对当前类中的方法的,而调用的equals是String类中的,不是同一个类中的,我是这么理解的。不知道有没有错。
2017-07-11
最新回答 / 小光头
最后,我是这么实现的:compareTo()方法比较的字符串类型是否相等,而我一开始把id设置成int型,所以在里面判断语句,返回-1,0,1同样可以达到效果。代码如下:<...code...>
2017-07-10