java基础——类与对象(五)

java基础——类与对象(五),第1张

java基础——类与对象(五) 使用对象类型作为方法的参数和返回值

一、使用对象类型作为方法

借用上一节定义的类Student,然后代码如下:

public class Demo05 {
    public static void main(String[] args){
        Phone one=new Phone();
        one.brand="苹果";
        one.price=8388.00;
        one.colour="黑色";

        method(one);
    }

    public static void method(Phone param){
        System.out.println(param.brand);//苹果
        System.out.println(param.colour);//黑色
        System.out.println(param.price);//8388.00
    }
}

二、使用对象类型作为方法的返回值

public class Demo06 {
    public static void main(String[] args){
        Phone two=getPhone();
        System.out.println(two.brand);//苹果
        System.out.println(two.colour);//黑色
        System.out.println(two.price);//8388.00

    }
    public static Phone getPhone(){
        Phone one=new Phone();
        one.brand="苹果";
        one.price=8388.00;
        one.colour="黑色";
        return one;

    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5707445.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存