我看到一个arry列表设置如下
private ArrayList<Student> students; //instance variable
public CollegeCommunity()//constructor
{
students = new ArrayList<Student>();
}
如下
ArrayList exampleArray = new ArrayList();
我理解为什么一个有一个实例变量/构造函数而另一个只是简单地声明但我不确定为什么第一个包含<Student>
而另一个没有这两者有<...>
什么区别?