Collection是一個接口,而Collections是 Java 中的一個實用程式類別。 Set、List、和Queue是Collection介面的一些子接口,Map介面也是一部分Collections框架的一部分,但它不繼承Collection介面。 Collection介面的重要方法有add()、remove()、size()、clear()等,而Collections類別僅包含靜態方法,如sort()、min()、max()、fill()、copy()、reverse()等。
public interface Collection<E> extends Iterable<E>
public class Collections extends Object
import java.util.*; public class CollectionTest { public static void main(String args[]) { <strong> </strong>ArrayList<Integer> list = new ArrayList<Integer>(); // Adding elements to the ArrayList list.add(5); list.add(20); list.add(35); list.add(50); list.add(65); <strong> </strong>// Collections.min() method to display minimum value<strong> </strong> System.out.println("Minimum value: " + Collections.min(list)); <strong> </strong>// Collections.max() method to display maximum value<strong> </strong> System.out.println("Maximum value: " + Collections.max(list)); } }
Minimum value: 5 Maximum value: 65
以上是Java中Collection和Collections之間的差異是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!