1 2 3 4 5 6 7 8 9 10
package test3; public class FieldAccessType { private int[] k; public void access() { k = new int[1]; int i = 3; i += k[0]; } }