当我使用 a=x, b=y 时,结果是 15。但是当我使用 x=a,y=b 时,结果是 0。你能解释一下为什么吗?
public class Test {
int a , b;
Test(int x, int y) {
a=x;
b=y;
}
int sr() {
return a*b;
}
public static void main (String args[]){
Test t=new Test(5,3);
System.out.println(t.sr());
}
}