为什么这里color不用加this不调用的吗?

来源:4-3 编程练习

自律IT男

2020-05-12 22:03:57

// 创建重载advantage方法(带参数color),描述为:**颜色为**

public  void advantage(String color) {

System.out.println(this.variety + "颜色为" +color);


写回答

2回答

好帮手慕小琪

2020-05-13

同学你好,不加this是因为color是advantage()方法中要传入的参数,谁调用这个advantage(String color)方法,谁将颜色传入到方法中即可。

如果我的回答解决了你的疑惑,请采纳!祝学习愉快~

0

苍星乱舞

2020-05-12

public class Test {
    public static void main(String[] args) {
		// 实例化2个父类对象,传入两组相同的参数值
		Fruits fru1 = new Fruits("圆形","酸甜适中");
		Fruits fru2 = new Fruits("圆形","酸甜适中");
		// 调用父类eat方法
		fru1.eat();

		// 测试重写equals方法,判断两个对象是否相等
	    System.out.println("fru1和fru2的引用比较:"+fru1.equals(fru2));

	System.out.println("————————————————————————————————————————");
		// 实例化子类对象,并传入相关参数值
	    Waxberry wb = new Waxberry("圆形","酸甜适中","紫红色");
        
		// 调用子类face方法和eat方法
	    wb.face();
        wb.eat();
		// 测试重写toString方法,输出子类对象的信息
		System.out.println(wb);

		System.out.println("——————————————————————————————————————————————");
		// 实例化Banana类对象,并传入相关参数值
		Banana bn = new Banana("短而稍圆","果肉香甜","仙人蕉");

		// 调用子类的advantage和它的重载方法
	    bn.advantage();
	    bn.advantage("黄色");

	}
}
public class Fruits {
    // 私有属性:水果的形状(shape)和口感(taste)
	private String shape;
	private String taste;

	public Fruits() {

	}

	// 带参构造函数(参数为shape和taste)
	public Fruits(String shape,String taste){
	    setShape(shape);
	    setTaste(taste);
	}


    //通过封装实现对私有属性的get/set访问
    public String getShape(){
        return shape;
    }
    public void setShape(String shape){
        this.shape = shape;
    }
    public String getTaste(){
        return taste;
    }
	public void setTaste(String taste){
	    this.taste = taste;
	}

	// 创建无参无返回值得方法eat(描述内容为:水果可供人们食用!)
	public void eat(){
	    System.out.println("水果可供人们食用!");
	}



	// 重写equals方法,比较两个对象是否相等(比较shape,taste)
	public boolean equals(Fruits fruits){
	    if(getShape() == fruits.getShape() && getTaste() == fruits.getTaste()){
	        return true;
	    }
	    return false;
	}


}
//要求Waxberry类不允许有子类
public final class Waxberry extends Fruits {
    // 私有属性:颜色(color)
    
    private String color;
	//创建构造方法,完成调用父类的构造方法,完成属性赋值
    public Waxberry(){
        
    }
    public Waxberry(String shape,String taste,String color){
        super(shape,taste);
        this.color = color;
    }

    //创建不允许重写的face方法,描述为:杨梅:**、**,果味酸甜适中
    public final void face(){
        System.out.println("杨梅:"+color+"丶"+getShape()+",果味酸甜适中\n");
    }
    
    //重写父类eat方法,描述为:杨梅酸甜适中,非常好吃!
    public void eat(){
        System.out.println("杨梅酸甜适中,非常好吃!\n");
    }
    
    //重写toString方法,输出的表现形式不同(输出shape,color,taste)
    public String toString(){
        String str = "杨梅的信息:果实为"+getShape()+"丶"+color+","+getTaste()+",非常好吃!\n";
        return str;
    }
}
public class Banana extends Fruits {
    // 私有属性:品种(variety)
    private String variety;

    //创建带参构造方法为所有属性赋值
    public Banana(String shape,String taste,String variety){
        super(shape,taste);
        this.variety = variety;
    }

    //创建无参无返回值的advantage方法,描述为:**果形**,果肉香甜,可供生食。
    public void advantage(){
        System.out.println(variety+"果形"+getShape()+",果肉香甜,可供食用。\n");
    }
    
    //创建重载advantage方法(带参数color),描述为:**颜色为**
    public void advantage(String color){
        System.out.println(variety+"颜色为"+color+"\n");
    }    

}


0

0 学习 · 11489 问题

查看课程