最新回答 / qq_慕雪3265783
接口中确实不能有方法的实现,但可以进行接口回调,比如我定义一个human接口和一个young类,interface human{void Output();}class young implements human{ public young(){} public void Ouput(){}}human h=new young();h.Output();这样做是可以的,
2019-07-30
已采纳回答 / Daning_NFH
首先说优化,String类很好用,完全可以直接 a = a + s.charAt[i]; 用char不推荐;空白字符是因为随机数是0-10,0的时候就为空啊;do while 循环有逻辑错误,没考虑循环的起始,如果string已经存在了,肯定得重新生成,这个过程也是要循环的呀;错误更改如下图:<...图片...>同是初学Java,讲的可能有纰漏,见谅。
2019-07-29
已采纳回答 / 慕斯6431273
student.courses.contains(course2) 应该改为 coursesToSelect.contains(course2)
2019-07-28
最赞回答 / 安守那一份思念
Course temp3=(Course)coursesToSelect.get(2); Course temp4=(Course)coursesToSelect.get(3);出现了错误
2019-07-28
最新回答 / franzhe
pokerList.add(new Poker(pokerType[j],pokerNum[i])); // i,j 位置换下 public Player(String id,String name){this.id = id;this.id = name; //这里也不对handPokerList = new ArrayList<Poker>();}createGame 方法 里的比较似乎不对
2019-07-26