Get the name of an array : Object « Reflection « Java






Get the name of an array

 

public class Main {
  public static void main(String[] argv) throws Exception {

    String name = boolean[].class.getName();
    System.out.println(name);
    name = byte[].class.getName();
    System.out.println(name);
    name = char[].class.getName();
    System.out.println(name);
    name = short[].class.getName();
    System.out.println(name);
    name = int[].class.getName();
    System.out.println(name);
    name = long[].class.getName();
    System.out.println(name);
    name = float[].class.getName();
    System.out.println(name);
    name = double[].class.getName();
    System.out.println(name);
    name = String[].class.getName();
    System.out.println(name);
    name = int[][].class.getName();
    System.out.println(name);
  }
}

   
  








Related examples in the same category

1.Create an object from a string
2.Determine the Superclass of an Object
3.Obtain from where a Class is loaded
4.Find the Package of an Object
5.Get the class By way of an object
6.Get the fully-qualified name of a class
7.Get the fully-qualified name of a inner class
8.Get the unqualified name of a class
9.Get the name of a primitive type
10.Get the name of void
11.Getting the Superclass of a Class Object
12.For the primitive tipe the interface will be an empty array
13.If a class object is an interface or a class
14.Using Reflection to browse a java class
15.Instantiate unknown class at runtime and call the object's methods