() [] <> {}应该怎么使用?[]声明数组,表示列表 {}表示数组 <>表示泛型 ()构造器 例子:List list = new ArrayList(); List<Integer> list = new ArrayList<Integer>();
() [] <> {}应该怎么使用?[array.length], [array_index], {initialize the data structure with argument},(parameter1, parameter2), <泛型 可以是任何object类型,比如说int[], Integer>