要調用其他類中的變量,必須先實例化該類對象,然后通過對象來訪問該類中的變量。
例如,假設有一個名為OtherClass
的類,其中有一個變量intVar
:
public class OtherClass {
public int intVar;
public OtherClass(int value) {
this.intVar = value;
}
}
然后在另一個類中調用OtherClass
中的變量intVar
:
public class MainClass {
public static void main(String[] args) {
OtherClass otherObj = new OtherClass(10);
int value = otherObj.intVar;
System.out.println(value);
}
}
在上面的例子中,我們首先創建了一個OtherClass
的對象otherObj
,然后通過該對象來訪問intVar
變量的值,并將其賦給value
變量。最后打印輸出value
的值為10。