码迷,mamicode.com
首页 > 编程语言 > 详细

脉脉的一道网红Java面试题

时间:2019-07-30 00:59:12      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ring   main   方法   super   alt   ima   sys   图片   static   

技术图片

题目如下:

public class Test {

    public static void main(String[] args) {
        int a = 10;
        int b = 10;
        // 需要在method方法被调用后,仅打印出a=100,b=200,请写出method方法的代码
        method(a, b);
        System.out.println("a=" + a);
        System.out.println("b=" + b);
    }
    
    // 代码编写处
}

题面看着很简单,但小心有坑。

Java中方法的参数传递机制是值传递,所以不能简单的在method方法中使用a*10b*20,可以参考。。。。。。

示例答案一:使用System.exit()终止虚拟机

    public static void method(int a, int b) {
        System.out.println("a=" + a * 10);
        System.out.println("b=" + b * 20);
        System.exit(0);
    }

示例答案二:重写打印流的println方法

    public static void method(int a, int b) {
        PrintStream ps = new PrintStream(System.out) {
            @Override
            public void println(String x) {
                if ("a=10".equals(x)) {
                    x = "a=100";
                } else if ("b=10".equals(x)) {
                    x = "b=200";
                }
                super.println(x);
            }
        };
        System.setOut(ps);
    }

技术图片

脉脉的一道网红Java面试题

标签:ring   main   方法   super   alt   ima   sys   图片   static   

原文地址:https://www.cnblogs.com/sum-41/p/11267210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!