gpt4 book ai didi

c# - 统计某个类的对象被实例化的次数

转载 作者:行者123 更新时间:2023-11-30 19:45:22 25 4
gpt4 key购买 nike

我有一个名为 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++;
}

最佳答案

静态化

private static int children = 0;

关于c# - 统计某个类的对象被实例化的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10676155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com