Java集合:List中存放若干學生對象(學生有學號,姓名,性別等屬性),去除List中重複的元素,並按學號降序輸出。

package collection; import java.util.*; public class NewStudent implements Comparable<NewStudent>{ private int code; private String name; public int getCode() { return code;
相關文章
相關標籤/搜索