作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于 future 的程序,我需要创建一个有界整数类,即 0-59(可用于时间问题)。
我无法让它“环绕”。例如,有界 int = 54
如果我添加 10
它应该是 4
。
最佳答案
您可以使用取模%
运算符
int modulo = 60;
int value = 24;
value = (value + 40) % modulo;
System.out.println(value); // 4
value = (value + 50000) % modulo;
System.out.println(value); // 34
<小时/>
如果您需要类(class),您可以执行以下操作:
class MyIntegerBounded {
private int value;
private int bound;
public MyIntegerBounded(int value, int bound) {
this.value = value;
this.bound = bound;
}
int get() {
return value;
}
void increment() {
add(1);
}
void add(int toAdd) {
value = (value + toAdd) % bound;
}
}
使用:
public static void main(String[] args) throws InterruptedException {
MyIntegerBounded m = new MyIntegerBounded(24, 60);
System.out.println(m.get()); // 24
m.increment();
System.out.println(m.get()); // 25
m.add(40);
System.out.println(m.get()); // 5
}
关于java - 如何生成有界整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50592310/
我是一名优秀的程序员,十分优秀!