class Scroll {
static boolean up;
static boolean down;
public static void scroll(boolean direction) {
if (/* ... */) {
System.out.println("UP");
}
else {
System.out.println("DOWN");
}
}
public class Test2 {
public static void main(String[] args) {
Scroll.scroll(Scroll.up);
}
}
如何检查哪个字段已使用 - withScroll.up
或调用Scroll.down
?我知道在上面的代码中我可以通过其他方式获得相同的效果,但它是简化的代码,具有我的问题的本质。