最赞回答 / 在另一边
String prefix =fileName.substring(index); 改成String prefix =fileName.substring(index+1);不能包括”.“if ( index!=-1 && index!=0 && prefix=="java" ) 改成if (index != 1 && index != 0 && prefix.equals("java"))不能出现在首位,内容比较不能用”==“
2016-04-04
最新回答 / weibo_这里是哪里Adrian
依然是在Student类中重写的compareTo()方法中实现,视频中只是举了最简单情况的比较例子,如果想要实现多条件或者更复杂的比较,就将多情况的比较条件逻辑捋顺好写在方法中。
最新回答 / 精慕门7137578
String s = "xxxx";创建s之前系统会先在"池子"中查找是否已经存在这个字符串, 如果存在则直接符号该字符串的句柄如果不存在, 系统会创建一个新"xxxx"字符串, 并返回句柄, 以后再有"xxxx"被要求创建, 系统不会创建新的,而是直接返回已经存在的字符串的句柄String s = new String("xxxx");系统不会去"池子"中查找, 直接在内存中新开辟一块空间, 初始化为"xxxx",并返回句柄
2016-04-02
最赞回答 / t峰01
没有把 异常抛出导入包:import java.text.parseException在main函数加入 throws parseException即可public static void main(String[] args) throws parseException{
2016-04-02
最新回答 / 彭若飞
public class Students {public Students(String id,String name) { this.id=id; this.name=name; this.courses=new HashSet<Course>(); } public Students(){}}public class ChildStudent extends Students{}我试了一下 并没有报错 不知道你是怎么写的
2016-03-31
最赞回答 / Zoya
while(true){} 循环中,true是一个boolean值,即真值,如果循环条件为真就一直循环执行下去,直到循环条件不成立。这里用while(true){}循环主要是为了能够在你输入错误的命令后能够重复提示你输入。还有楼主,你要十分注意括号内是true而不是ture,这个是很容易犯错的,ture不是关键字啊!!!希望对你有帮助。
2016-03-31
最新回答 / qq_落叶无痕_2
this代表的是本类,this.id就是指SetTest这个类的id.而这里用this只是为了使得属性与构造器种的参数(如id,name)区别开来
2016-03-31