Java tutorial
//package com.java2s; import java.lang.reflect.Field; public class Main { public static Class<?> getComponentType(Field f) { return f.getType().getComponentType(); } }