1、姓名:范爽学号:2014218449一、this super static abstract public private各自的用法(一)this1.this是指当前对象自己。当在一个类中要明确指出使用对象自己的的变量或函数时就应该加上this引用。如下面这个例子中:publicclassA{Strings="Hello";publicA(Strings){System.out.println("s="+s);System.out.println("1->this.s="+this.s);this.s=s;System.out