Online Java Compiler By
JavaTpoint.com
//import statement import java.lang.reflect.Array; public class ReflectArraySetBooleanExample1 { public static void main(String[] args) { boolean[] sarr = (boolean[]) Array.newInstance(boolean.class, 3); Array.setBoolean(sarr, 0, true); Array.setBoolean(sarr, 1, false); Array.setBoolean(sarr, 2, true); for(int i=0;i
Output