堆棧溢出只是希望我在這裏寫更多。 Class A{
static Class B{
int i,j;
}
B method(int x){
// how to return object of type B
}
}
Class Main(){
// how do i call method B here
}
因此,我正在構建一個基於戰錘40k桌面遊戲的基礎程序,作爲我的Comp Sci類的額外功勞。我開始制定規格,然後實施規格。在這個遊戲中,我有一個類陸軍有類單位的ArrayList: List<Units> unitsList = new ArrayList<Units>(); 我已經包含不同的單位類型innerclasses創建的類單位。所以,從這個代碼片段將是: public class Uni
我有以下的抽象類結構: public abstract class A {
...
private List<B> b;
public List<B> getB() {
return b;
}
public void setB(List<B> b) {
this.b = b;
}
public stat