1 package test;2 3 public class ReadUseArrayIndex {4 5 public void test() {6 String [] args = null;7 int i = 0;8 String s = args[i];9 }10 11 }12