Java Array Create newArray()

Here you can find the source of newArray()

Description

new Array

License

Open Source License

Declaration

private static Class<?>[] newArray() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static Class<?>[] newArray() {
        return new Class<?>[0];
    }//from www.  j a  v a  2 s. com
}

Related

  1. arrayOf(long... values)
  2. arrayOf(T... elements)
  3. arrayOf(T... objects)
  4. ArrayToArray(Integer obj, Integer[] objArray)
  5. ArrayToObject(byte[] values)
  6. newArray(Class elementType, int length)
  7. newArray(int length, double start, double increment)
  8. newArray(Object obj, int size)
  9. newArray(Object src, int len)