首页 > 代码库 > 防止变量超过上限的巧妙办法

防止变量超过上限的巧妙办法

int n=0;
int max = 100;

//通常的做法(省略上下文)
if(n>=max)
{
    n = 0;
}
n++;

//巧妙的做法
n%=max
n++