The lesson here is to use empty arrays and empty lists when that is what you mean. int[] values = new int[0]; // always empty List<Integer> list = new ArrayList ...
確定! 回上一頁