Arrays

Arrays


1. Summary

1. Based on jdk 1.8

2. asList

    /**
     * Returns a fixed-size list backed by the specified array.  (Changes to
     * the returned list "write through" to the array.)  This method acts
     * as bridge between array-based and collection-based APIs, in
     * combination with {@link Collection#toArray}.  The returned list is
     * serializable and implements {@link RandomAccess}.
     *
     * <p>This method also provides a convenient way to create a fixed-size
     * list initialized to contain several elements:
     * <pre>
     *     List<String> stooges = Arrays.asList("Larry", "Moe", "Curly");
     * </pre>
     *
     * @param a the array by which the list will be backed
     * @return a list view of the specified array
     */
    public static <T> List<T> asList(T... a) {
	return new ArrayList<T>(a);
    }



1. The parameter is T and multiple generic T
If the parameter is an array of basic data types, it will be regarded as a whole, such as int [] a. At this time, size = 1.
If the parameter is a reference data type, its size is Number of data 2. ArrayList is

not java.util.ArrayList

3. Internal private static class of Arrays.ArrayList
    /**
     * @serial include
     */
    // Inherit Abstract, and Abstract implements List, so asList can be received by List
    // That is, ArrayList indirectly implements List
    private static class ArrayList<E> extends AbstractList<E>
    // RandomAccess can be accessed randomly, Serializable can be serialized
	implements RandomAccess, java.io.Serializable
    {
        private static final long serialVersionUID = -2764017481108945198L;
	private final E[] a;

	ArrayList(E[] array) {
            if (array==null)
                throw new NullPointerException();
	    a = array;
	}
        // The following is the method implemented by ArrayList, there is no RemoveAll method, so the return value of asList is List
        // An exception without this operation method will be thrown when removeAll is called
	public int size() {
	    return a.length;
	}

	public Object[] toArray() {
	    return a.clone();
	}

	public <T> T[] toArray(T[] a) {
	    int size = size();
	    if (a.length < size)
		return Arrays.copyOf(this.a, size,
				     (Class<? extends T[]>) a.getClass());
	    System.arraycopy(this.a, 0, a, 0, size);
	    if (a.length > size)
		a[size] = null;
	    return a;
	}

	public E get(int index) {
	    return a[index];
	}

	public E set(int index, E element) {
	    E oldValue = a[index];
	    a[index] = element;
	    return oldValue;
	}

        public int indexOf(Object o) {
            if (o==null) {
                for (int i=0; i<a.length; i++)
                    if (a[i]==null)
                        return i;
            } else {
                for (int i=0; i<a.length; i++)
                    if (o.equals(a[i]))
                        return i;
            }
            return -1;
        }

        public boolean contains(Object o) {
            return indexOf(o) != -1;
        }
    }


Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326631907&siteId=291194637