在弄清楚我不能自动装箱自己的类型之后,我仍然需要一个在分配时自动调整自身的值。这会起作用吗,还是会简单地冻结?如果它不会,那么帮助将不胜感激。
while(true){
if(x){
y=z
}
}
注意:如果我更好地解释我的课程可能会有所帮助,所以这里是:它本质上与整数相同,但它需要一个最大值和一个最小值。我需要这样当它的值大于最大值时,它从最小值开始,反之亦然。例子:
LoopInteger i = new LoopInteger(0, 3, 0); //min, max, value
i.setValue(5); //When this is run, i need it to set the value to 1, as it is two more than the max of 3
i.setValue(-2); //The same here, except now it has to be set to 2, as it is two less than the min of 0.
基本上,它至少具有可配置的最大值并且未签名。