已采纳回答 / 小小小小小柯丶
Long time=c.getTimeInMillis;应该就是Long time=new Long(c.getTimeInMillis);基本类型long int转换为其对应Long包装类的自动装箱。个人愚见。
2017-12-30
最赞回答 / 慕村5352741
divider--=9;100/9=11点多然后100+11=111后return111了
已采纳回答 / 油泼裤带面
StringBulider>StringBuffer>String;String确定字符串之后是固定的不可改变的;重新添加字符串就会成为一个新的对象,并非是原对象;StringBulider确定字符串后可对字符串进行修改、增加内容,且指定的还是原对象,性能比string高;StringBulider和StringBuffer比较,前者没有实现线程安全功能,后者是线程安全,所以前者比后者高;
2017-12-28
最赞回答 / 慕数据4413692
public void CourseToStudent() { this.courseToSelect = new ArrayList(); }构造函数应该是public CourseToStudent()
2017-12-27
最新回答 / 千山暮雪CN
students.keySet();是调用Map定义下students的方法,你可以定义一个Set<Course> courses =new HashSet<Course>();再调用courses.keySet();方法试试
2017-12-26