本文共 518 字,大约阅读时间需要 1 分钟。
需要在method方法被调用之后,仅打印出a=100,b=200,请写出method方法的代码
*/
public class TestPrint {
public static void main(String[] args) {
int a = 10;
int b = 10;
method(a, b);//需要在method方法被调用之后,仅打印出a=100,b=200,
// 请写出method方法的代码
System.out.println("a=" + a);
System.out.println("b=" + b);
}
private static void method(int a, int b) {
PrintStream printStream = new PrintStream(System.out) {
@Override
public void println(String x) {
if ("a=10".equals(x))
x = "a=100";
else
x = "b=200";
super.println(x);
}
};
System.setOut(printStream);
}
}
转载地址:http://wgqsx.baihongyu.com/