list對象中 根據某個屬性 查詢最大最小對象

下面的TestList類裏實現了以NodeId來找到Node對象的最大/最小值: import java.util.*; public class TestList { public static void main(String[] args) { List input = new ArrayList(); Node Node1=new Node(1,"acc"); Node Node2=new Node(2,"agg"); Node Node3=new Node(3,"core"); input.add(Node1); input.add(Node2); input.add(Node3); System.out.println(input); //max和min方法在Collections類中,若要將Node類對象做爲參數,則Node類須要實現Comparable接口 System.out.println("最大值: " + Collections.max(input)); System.out.println("最小值: " + Collections.min(input)); } } //Node類實現Comparable接口: class Node implements Comparable { Integer NodeId; String NodeType; public Node(Integer id, String type) { NodeId=id; NodeType=type; } public Integer getNodeId() { return NodeId; } public void setNodeId(Integer nodeId) { NodeId = nodeId; } @Override //覆蓋Comparable接口裏的compareTo方法 public int compareTo(Node o) { return NodeId.compareTo(o.getNodeId());//以NodeId進行比較 } }
相關文章
相關標籤/搜索