已采纳回答 / 黄森huang
定义student类和course类用于初始化所需要的变量例如student,我们需要变量是:name等(有什么)变量,其最主要的是里面的构造方法(带参数),在功能类中能够快速的将实例对象填充到具体的类中,不需要再一 一的重新命名变量在赋值
2016-09-21
最新回答 / 慕设计9479289
http://iranshao.com/albums/4918578http://iranshao.com/photos/PU9E8QemcWmnhttp://iranshao.com/albums/4918585http://iranshao.com/photos/VFGNWQLUlvHVhttp://iranshao.com/albums/4918582http://iranshao.com/photos/E7zsB5LjJZLhhttp://iranshao.com/albums/4918583ht...
2016-09-16
最新回答 / 捞捞
//我在我的netbean上运行public class test { public static void main(String[] args) { // 创建一个空的StringBuilder对象 StringBuilder str=new StringBuilder(); // 追加字符串 str.append("jaewkjldfxmopzdm"); // 从后往前每隔三位插入逗号 for(int i=str.length()-3;i>0;...
2016-09-16
已采纳回答 / 小飞vsKK
我试了下。其实不用新创建。还是按照Comparable的方法,在Student类中继承Comparator接口,只需要在调用方法new个Student类即可。可以理解为新建的类只是用来重写Comparator接口的compare方法用的,无具体意义。截图如下:继承接口:<...图片...><...图片...><...图片...><...图片...>
2016-09-16
已采纳回答 / Win_me
在List当中,在相同的索引位置重复添加数据时,后添加的数据会将先添加的数据索引位置向后移动一位,也就是挤下去。例如:import java.util.List;import java.util.ArrayList;public class ListDemo{public static void main(String[]args){List<String> list=new ArrayList<String>();list.add(0,"aa");list.add(0,"bb")...
2016-09-16