如何检查数组大小是否已增加或数组值是否已更改。
while(ARRAY.array_size_changed || ARRAY.array_altered==true) {
System.out.println("Array size increased or decreased or values changed");
//rest of the code is here which alter the array size
}
我使用了boolean
,但它使代码永远循环。
基本上,我有一个数组跟踪数据库的任何结果并将其添加到ARRAY。根据输入到ARRAY的新值,下一次迭代将执行。当没有进一步添加到ARRAY或更改值时,它将退出。
答案 0 :(得分:1)
我会添加一些数据抽象,只允许通过更改的方法或添加方法更改/添加数组中的这些值。这样,当调用此方法时,您就知道即将添加/更改某些内容。