Collection はインターフェースであり、Collections は Java の utility クラスです。 Set、List、、および Queue は、Collection インターフェイスの一部のサブインターフェイスであり、Map インターフェイスも # の一部です。 ##Collections フレームワーク パーツですが、Collection インターフェイスは継承しません。 Collection インターフェイスの重要なメソッドは、add()、remove()、size()、clear() などであり、Collections クラスのみです。 sort()、min()、max()、fill()、copy()、reverse() などの static メソッドが含まれています。
コレクション インターフェイスの構文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 のコレクションとコレクションの違いは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。