Java Utililty Methods Iterable to Array

List of utility methods to do Iterable to Array

  1. HOME
  2. Java
  3. I
  4. Iterable to Array

Description

The list of methods to do Iterable to Array are organized into topic(s).

Method

T[] toArray(Iterable elements, T[] a)
to Array
List<T> array = new ArrayList<T>();
for (T e : elements) {
 array.add(e);
return array.toArray(a);

AltStyle によって変換されたページ (->オリジナル) /