ネストされた内部クラス ABar と BBar がメイン クラスの変数にアクセスすることは可能ですか? 例えば:
public class Foo {
public ABar abar = new ABar();
public BBar bbar = new BBar();
public int someCounter = 0;
public class ABar {
public int i = 0;
public void someMethod(){
i++;
someCounter++;
}
}
public class BBar {
public void anotherMethod(){
bbar.someMethod();
someCounter++;
}
}
}
// then called using: //
Foo myFoo = new Foo();
myFoo.bbar.anotherMethod();
編集
入力したコードは、最初に試していればうまくいったようです。具体的になりすぎずに助けを得ようとしていました。私が実際に問題を抱えているコード
「非静的フィールド ステージへの静的参照を作成できません」というエラーが原因で失敗する
public class Engine {
public Stage stage = new Stage();
// ...
public class Renderer implements GLSurfaceView.Renderer {
// ...
@Override
public void onDrawFrame(GL10 gl) {
stage.alpha++;
}
}
public class Stage extends MovieClip {
public float alpha = 0f;
}