参考“这个”在成员构造函数内

发布于 2025-01-06 04:34:38 字数 608 浏览 0 评论 0原文

public abstract class AndroidTextAdvGame extends Activity implements Game {

Game game;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    game = this;

    rightLinksListener = new View.OnClickListener() {           
        @Override
        public void onClick(View v) {
                    setScreen( new BookQuestGameScreen(game) );
        }

    };
}

无论如何,我可以

在新的 View.OnClickListener 中引用“this”(我定义的类)吗?

当前的解决方法是我创建的游戏成员,并在 onCreate 中分配 game=this,然后在新的 View.OnClickListener 中使用 game

public abstract class AndroidTextAdvGame extends Activity implements Game {

Game game;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    game = this;

    rightLinksListener = new View.OnClickListener() {           
        @Override
        public void onClick(View v) {
                    setScreen( new BookQuestGameScreen(game) );
        }

    };
}

Is there anyway I can reference 'this' ( the class I defined )

in the new View.OnClickListener ?

The current workaround is that game member I created, and assigning game=this in the onCreate and then using game in the new View.OnClickListener

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

路弥 2025-01-13 04:34:38

如果您定义的类名为 AndroidTextAdvGame,那么您可以使用以下方式引用它的“this”

AndroidTextAdvGame.this

If your class you defined was called AndroidTextAdvGame, then you would refer to its "this" by using

AndroidTextAdvGame.this
非要怀念 2025-01-13 04:34:38

是的:您可以将外部类实例引用为 AndroidTextAdvGame.this。例如:(

new BookQuestGameScreen(AndroidTextAdvGame.this)

我承认,一开始看起来有点奇怪,但你会习惯的。)

Yes: you can refer to the outer-class instance as AndroidTextAdvGame.this. For example:

new BookQuestGameScreen(AndroidTextAdvGame.this)

(It's a bit strange-looking at first, I admit, but you get used to it.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文