>  기사  >  Java  >  Java의 Colleciton에 대한 자세한 소개

Java의 Colleciton에 대한 자세한 소개

PHP中文网
PHP中文网원래의
2017-06-20 16:33:541271검색

개요:

1. 컬렉션 정의: Iterable을 상속하고 일반 기능을 가지며 컬렉션 컬렉션 시스템의 최상위 상위 인터페이스입니다.

2, 컬렉션 방법: add, addAll; isEmpty, size; toArray(overloaded); containAll;removeAll,retainAll; of Collection

<span style="color: #cc7832">public interface Collection<<span style="color: #507874">E> <span style="color: #cc7832">extends Iterable<<span style="color: #507874">E><br><span style="color: #000000">从定义中我们可以看出Collection是一个带<span style="color: #ff0000">泛型的接口</span>。<br>实现了Iterable接口,也就是说可以使用<span style="color: #ff0000">迭代</span>器。<br>以上两点很重要,其下所有子类均有这两个属性。<br>还有一点大家需要注意Collection集合并<span style="color: #ff0000">没有定义查找</span>的方法。<br><br></span></span></span>
둘째, Colleciton 고유의 메소드(상속 메소드 제외)를 살펴보겠습니다.

1, add 및 addAll에 대해. 둘 다 컬렉션에 요소를 추가합니다(해당 하위 클래스가 이를 구체적으로 구현합니다).

전자는 단일 요소를 추가하는 것이고, 후자는 Collection을 구현하는 하위 클래스 컬렉션을 추가하는 것입니다.

예(예제에서는 의도적으로 다른 Collection 하위 클래스를 사용했습니다):

<br>
    @Testpublic void testAdd(){
        Collection<String> collection = new LinkedList<>();//添加一个对象collection.add("person1");
        collection.add("person2");

        List<String> list = new ArrayList<>();
        list.add("person3");
        Set<String> set = new HashSet<>();
        set.add("person4");//添加一个Collection集合。        collection.addAll(list);
        collection.addAll(set);

        collection.forEach(System.out::println);//打印控制台
    }

2,clear, isEmpty, size.

이 방법들은 상대적으로 간단하고 투박해서 하나로 묶어서 표시하고, 그나저나 코드는 보여주지 않겠습니다.

clear는 컬렉션의 모든 요소를 ​​지웁니다.

isEmpty는 컬렉션에 요소가 있는지 확인하고 비어 있으면 true를 반환합니다.

size는 세트의 요소 수를 가져옵니다.

3, 컬렉션을 배열 toArray로 변환하는 방법에 대해 설명합니다.

ToArray 오버로드 메서드에는 매개 변수가 없으며 숫자가 기존 배열에 전달되어야 합니다.

먼저 매개변수가 없는 Object[] toArray()에 대해 이야기해 보겠습니다. 객체 배열을 반환하므로 여기에 문제가 발생합니다.

필요한 경우 String[] object = (String[]) collection.toArray();

이렇게 하면

ClassCastException

예외가 발생합니다.

그러면 매개변수가 있는 T[] toArray(T[] a)가 무엇인지 알 수 있습니다. 아래를 참조하세요.

다음 코드는 다음 결과를 인쇄합니다. 이는 어떤 경우에도 배열 객체가 반환된다는 의미입니다. 전달된 배열의 길이가 컬렉션의 크기보다 작을 경우 새 배열이 별도로 반환되며 전달된 배열에는 데이터가 채워지지 않습니다.

전달된 배열이 결합된 크기보다 크거나 같으면 들어오는 배열이 채워지고 배열이 반환됩니다.

참고: 따라서 일반적으로 매개변수가 있는 메서드의 두 번째 사례를 사용해야 합니다

---주어진 배열이 집합보다 작은 경우를 인쇄합니다------

strings: [null, null]

returnStrings: [escore, wym, cl]

strings==returnStrings: false

---주어진 배열이 집합과 동일한 경우를 인쇄합니다------

strings: [escore, wym, cl]

returnStrings: [escore , wym , cl]

strings==returnStrings: true<br>---주어진 배열이 집합보다 큰 경우를 인쇄합니다------<br>strings: [escore, wym, cl, null, null]<br>returnStrings: [escore, wym, cl, null, null]<br>strings==returnStrings: true<br><br>

        Collection<String> collection = new LinkedList<>();
        collection.add("escore");
        collection.add("wym");
        collection.add("cl");       // String[] objects = (String[]) collection.toArray(); //会抛出ClassCastException异常Object[] objects = collection.toArray();//System.out.println(Arrays.toString(objects));String[] strings = new String[2];
        String[] returnStrings = collection.toArray(strings);
        System.out.println("---打印给定的数组小于集合的情况-----");
        System.out.println("strings: "+ Arrays.toString(strings));
        System.out.println("returnStrings: " + Arrays.toString(returnStrings));
        System.out.println(strings == returnStrings);

        String[] strings2 = new String[collection.size()];
        String[] returnStrings2 = collection.toArray(strings2);
        System.out.println("---打印给定的数组等于集合的情况-----");
        System.out.println("strings: "+ Arrays.toString(strings2));
        System.out.println("returnStrings: " + Arrays.toString(returnStrings2));
        System.out.println(strings2 == returnStrings2);

        String[] strings3 = new String[5];
        String[] returnStrings3 = collection.toArray(strings3);
        System.out.println("---打印给定的数组大于集合的情况-----");
        System.out.println("strings: "+ Arrays.toString(strings3));
        System.out.println("returnStrings: " + Arrays.toString(returnStrings3));
        System.out.println(strings3 == returnStrings3);
<br><br><br><br><br>4Iterator
<
E

> iterator()

iterator, 여기서는 더 이상 논의하지 않겠습니다. Iterator의 내용 변명을 참조하세요.

5, contain, containAll; 제거, RemoveAll, keepAll

contains 및 containAll은 알리신 포함 여부와 컬렉션 컬렉션 포함 여부를 각각 결정하는 데 사용됩니다.

remove,removeAll,retainAll은 각각 컬렉션의 요소를 삭제하고, 컬렉션 세트와 동일한 요소를 삭제하고, 컬렉션 컬렉션의 요소와 동일한 요소를 유지합니다.

이걸 왜 합치나요?

여기에는 equals 메소드가 포함됩니다.

즉, 포함 여부는 어떻게 결정합니까? 이 메소드는 들어오는 객체의 equals 메소드를 호출하고 컬렉션의 요소와 하나씩 비교합니다. 동등하다면. ContainsAll 메소드는 각 요소를 포함 메소드를 호출하도록 배치합니다.

마찬가지로, 제거는 어떤 요소를 삭제해야 하는지 알고 있으며, 또한 equals 메서드를 호출하여 컬렉션의 요소와 하나씩 비교합니다. RemoveAll 및 keepAll은 들어오는 컬렉션 요소가 제거 메서드를 하나씩 호출하도록 합니다. 단, 전자는 동일한 항목을 삭제하고 후자는 동일한 항목을 유지합니다.

(Java 컬렉션에 대한 모든 것을 "Java 기본 컬렉션 프레임워크" 카테고리에서 공유하겠습니다)

위 내용은 Java의 Colleciton에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:JAVA에 대한 간략한 소개다음 기사:JAVA에 대한 간략한 소개

관련 기사

더보기