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


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

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

 

 

内存图:

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

 

 

 

 

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

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;

    }

 

 

 

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

 

 

 

搜索

复制

原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/270710.html

(0)
上一篇 2022年6月29日
下一篇 2022年6月29日

相关推荐

发表回复

登录后才能评论