public class Set { public List<Course>keben; //创建一个泛型为Course的List对象keben public Set(){//创建Set方法 this.keben=new ArrayList<Course>();//keben实例化 }
上面是我做Set练习时的一个开头,发现去掉this不影响最后的运行。
请问实例化的时候加this,有什么用?
忘性最大的人
相关分类