我有方法printB()
:
private static final void printB () {
System.out.println(Boolean.TRUE);
System.out.println(Boolean.FALSE);
}
我有课
public class ChangeBooleanValue {
public static void main(String[] args) {
// Add code
printB();
}
private static final void printB () {
System.out.println(Boolean.TRUE);
System.out.println(Boolean.FALSE);
}
}
我想编写 instread 的代码,// Add Code
以便输出为:
true
true
或者
false
false
我知道通过一些 Java 技巧可以使用它。