public class Set {
public List<Course>keben;
//创建一个泛型为Course的List对象keben
public Set(){//创建Set方法
this.keben=new ArrayList<Course>();//keben实例化
}上面是我做Set练习时的一个开头,发现去掉this不影响最后的运行。请问实例化的时候加this,有什么用?
添加回答
举报
0/150
提交
取消