作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个枚举:
public enum Direction {
NORTH, WEST, SOUTH, EAST;
}
这个方法:
public void turn(int n){
for (int i = 0; i < n; i++){
//Change compass direction n times
}
}
我需要做的是将方向逆时针改变 90 度,输入“n”次。我设置了枚举,以便它处于正确的顺序,我只是不确定如何制作它,以便可以通过迭代枚举“n”次来更改当前值 compassDirection 。
最佳答案
如果我理解正确,您想要迭代 enum
成员。
为此,每个 enum
都有一个 .values()
方法,该方法返回一个数组,其中包含按定义顺序排列的所有有效值。
所以
public void turn(int n){
for (int i = 0; i < n; i++){
for (Direction direction : Direction.values()) {
// Do something with direction
}
}
}
你基本上实现了你想要的。
<小时/>编辑:经过您的澄清,我认为您相当满意
public void turn(int n){
Direction[] directions = Direction.values()
for (int i = 0; i < n; i++) {
int direction_index = i % directions.length;
Direction direction = directions[direction_index];
// Do something with direction
}
}
或
public void turn(int n){
int i = 0;
while (true) {
for (Direction direction : Direction.values()) {
if (i==n) return;
i++
// Do something with direction
}
}
}
关于java - 如何编写一个方法来循环遍历枚举输入的次数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29042987/
我是一名优秀的程序员,十分优秀!