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

Java 方法中,参数的装配顺序

时间:2020-03-02 15:14:42      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:依次   修改   tostring   class   turn   stat   print   public   方法   

从左到右依次装配,参数的值一旦确定,即使后面修改了该值,方法拿到的值也不会随之变化了。

class Solution {
    public int a;

    @Override
    public String toString() {
        return "Solution{" +
                "a=" + a +
                '}';
    }
}

public class Main{
    static Solution max;
    static Solution change(){
        max = new Solution();
        max.a = 8;
        Solution s = new Solution();
        s.a = 5;
        return s;
    }
    public static void method(Solution x,Solution y){
        System.out.println(x);
        System.out.println(y);
    }
    public static void main(String[] args) {
        max =new Solution();
        max.a=0;
        method(max,change());
    }
}

Java 方法中,参数的装配顺序

标签:依次   修改   tostring   class   turn   stat   print   public   方法   

原文地址:https://www.cnblogs.com/ZGQblogs/p/12395047.html

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