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

Java 值传递 和引用传递

时间:2017-07-17 11:08:15      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:port   mutable   test   integer   基本   copy   void   class   table   

值传递:

方法调用时,实际参数把它的值传递给对应的形式参数,函数接收的是原始值的一个copy,此时内存中存在两个相等的基本类型,即实际参数和形式参数后面方法中的操作都是对形参这个值的修改,不影响实际参数的值

引用传递:

也称为传地址。方法调用时,实际参数的引用(地址,而不是参数的值)被传递给方法中相对应的形式参数,函数接收的是原始值的内存地址;
在方法执行中,形参和实参内容相同,指向同一块内存地址,方法执行中对引用的操作将会影响到实际对象。

(1)基本数据类型传值,对形参的修改不会影响实参;
(2)引用类型传引用,形参和实参指向同一个内存地址(同一个对象),所以对参数的修改会影响到实际的对象;
(3)String, Integer, Double等(包装类)immutable的类型特殊处理,可以理解为传值,最后的操作不会修改实参对象,和基本类型的相似。

public class TestStringTransport {

    public void change(String str) {
        str = str + "world";
    }
    
    public void change(StringBuffer sb) {
        sb.append("world");
    }
    
    public static void main(String[] args) {
        TestStringTransport test = new TestStringTransport();
        String str = "hello";
        test.change(str);
        System.out.println(str);
        
        String str1 = new String("hello");
        test.change(str1);
        System.out.println(str1);
        
        StringBuffer sb = new StringBuffer("hello");
        test.change(sb);
        System.out.println(sb);
    }
}

结果:

hello
hello
helloworld

Java 值传递 和引用传递

标签:port   mutable   test   integer   基本   copy   void   class   table   

原文地址:http://www.cnblogs.com/mid-wk/p/7193121.html

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