其他分享
首页 > 其他分享> > 使用对象类型作为方法的参数和使用对象类型作为方法的返回值

使用对象类型作为方法的参数和使用对象类型作为方法的返回值

作者:互联网

当一个对象作为参数,传递到方法当中时,实际上传递进去的是对象的地址值。

 

 

内存图:

 

 

 

 

 当使用一个对象类型作为方法的返回值时:返回值其实就是对象的地址值。

public static void main(String[] args) {

        Phone tow = getPhone();
        System.out.println(tow.brand);
        System.out.println(tow.price);
        System.out.println(tow.color);


    }
    public static Phone getPhone(){

        Phone phone = new Phone();
        phone.brand = "苹果";
        phone.price = 8388.0;
        phone.color = "玫瑰金";
        return phone;

    }

 

 

 

 

 

 

搜索

复制

标签:phone,对象,tow,System,Phone,println,类型,返回值,out
来源: https://www.cnblogs.com/12-12-12/p/16422993.html