我可以繁殖的靜態和非靜態變量,像這樣:與靜態和非靜態變量的數學運算
public class C {
protected int c;
private static int s;
public int ma() { return this.c*this.s; }
}
或者:
public class B{
protected int x;
private static int y;
public static int ms() { return x + y; }
}
第二個代碼不工作,我想知道是因爲它期待靜態嗎?