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

JavaSE 面试题: 方法的参数传递机制

时间:2019-08-19 22:55:59      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:public   arrays   class   util   static   change   传递   badge   ogg   

JavaSE 面试题 方法的参数传递机制

import java.util.Arrays;

public class Test {
    public static void main(String[] args) {
        int i = 1;
        String str = "hello";
        Integer num = 200;
        int[] arr = {1, 2, 3, 4, 5};
        MyData my = new MyData();

        change(i, str, num, arr, my);

        System.out.println("i = " + i);
        System.out.println("str = " + str);
        System.out.println("num = " + num);
        System.out.println("arr = " + Arrays.toString(arr));
        System.out.println("my.a = " + my.a);
    }

    public static void change(int j, String s, Integer n, int[] a, MyData m) {
        j += 1;
        s += "world";
        n += 1;
        a[0] += 1;
        m.a += 1;
    }
}

class MyData {
    int a = 10;
}

参考答案

i = 1
str = hello
num = 200
arr = [2, 2, 3, 4, 5]
my.a = 11

JavaSE 面试题: 方法的参数传递机制

标签:public   arrays   class   util   static   change   传递   badge   ogg   

原文地址:https://www.cnblogs.com/hglibin/p/11380215.html

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