this是java语言中的一个关键字,可以出现在实例方法和构造方法中,但不可以出现在类方法中
至于this 是否可以访问本类静态的成员变量和类方法,要是我试的没有错,答案是“可以”
class Lei
{
static double A;
double B;
Lei(double A,double B){
this.A=A;this.B=B;
}
static double Sum(){
return A;
}
double WW(){
return this.Sum();
}
}
public class Attempt
{
public static void main(String args[]){
Lei R=new Lei(9,7);
System.out.println(R.A+" "+R.B+" "+R.Sum()+" "+R.WW());
}
}