最佳答案
为什么Java中的泛型只能与类一起工作,而不能与基本类型一起工作?
例如,这很好:
List<Integer> foo = new ArrayList<Integer>();
但这是不允许的:
List<int> bar = new ArrayList<int>();