参照型とプリミティブ型


参照型

  • 例:int

プリミティブ型

例:Integer

数値を要素として持たせたい時

  • ArrayListの<>内にはintではなくIntegerを置く

    ArrayList<Integer> l = new ArrayList<>();