Online Java Compiler By
JavaTpoint.com
//import statement import java.lang.reflect.Array; public class ReflectArraygetShortExample1 { public static void main(String[] args) { short arr[] = { 190, 98, 45 }; for (int i = 0; i < arr.length; i++) { short vl = Array.getShort(arr, i); System.out.print(vl + " , "); } } }
Output