Java笔记之数组

1.int flags[] = new int[10];数组中的每个元素初始化为0.

  Arrays.fill(flags, 0);将数组中每个元素置为0.

 

你可能感兴趣的:(Java笔记之数组)