2

我有一个名为 Button 的类,它创建要在屏幕上显示的按钮。我想为每个按钮创建一个信息数组,但需要知道创建了多少个按钮。有没有一种简单的方法来跟踪一个类被实例化了多少次?我已经尝试过了,但它似乎不起作用......我想如果你把计数器放在构造函数中,它每次都会添加一个,但它似乎不起作用。

private int children = 0;

public Button(Vector2 position, Vector2 fontPos, Color buttonColor, 
              String buttonText, Boolean clickable, String spriteName)
{
    this.position = position;
    this.buttonColor = buttonColor;
    this.buttonText = buttonText;
    this.clickable = clickable;
    this.spriteName += spriteName;
    this.fontPos = fontPos;
    children++;
}
4

1 回答 1

8

让它成为静态的

private static int children = 0;
于 2012-05-20T18:48:19.173 回答