如题!实在有点搞不懂!
this代表当前对象
2楼说得对,后面调用非静态的get或set方法,需在静态的main方法中先创建对象如:HelloWorld hello=new HelloWorld();然后调用对应的set和get方法 hello.set(get)方法,set或get方法里的this就是我们创建的HelloWorld类的对象hello。
不是当前类,表示构造方法所构造的那个对象
是的,this表示当前类