gpt4 book ai didi

java - 更新计数器值时出现问题

转载 作者:行者123 更新时间:2023-12-01 17:39:31 25 4
gpt4 key购买 nike

我在更新计数器(整数值)时遇到问题。这是该类的定义:

public class Item_Actions 
{
private final int MAX_ITEMS = 100;
private Item myItem[];
private int counter;

public Item_Actions()
{
myItem = new Item[MAX_ITEMS];
counter++;
}

//Constructor add item into the menu (Description, type & price of Item)

public void addItem(Item itm)
{
myItem[counter] = itm;
counter++;
}.......

现在,每次我从另一个类调用 addItem 构造函数时,计数器始终保持为零。是什么原因造成的以及如何保存其中的数据?

谢谢

最佳答案

只需在变量 counter 的声明之前插入 static 关键字即可。那就是

 private static int counter=0;

关于java - 更新计数器值时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2758279/

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