Java静态方法间接赋值赋值非静态变量

在编程的过程中有时候我们需要通过一个静态的方法给静态的变量赋值,但是如果是直接赋值,编译器会直接报错:如下:



想必原因大家很清楚了,Cannot make a static reference to the non-static field mouthColor ;但是可以通过以下的方法间接赋值:


public class Duck {

	public String mouthColor = "";
	
	private Duck(String color) {
		mouthColor = color ;
	}
	
	public static Duck build(String color) {
		return new Duck(color);
	}

	public String getMouthColor() {
		return mouthColor;
	}

	public void setMouthColor(String mouthColor) {
		this.mouthColor = mouthColor;
	}

}

调用方法:

public class Test {

	public static void main(String[] args) {
		Duck duck = Duck.build("黄色");
		System.out.println("鸭子的嘴是:"+duck.getMouthColor());
	}
}

输出:


鸭子的嘴是:黄色

关键就是:通过静态的方法(new 一个对象返回)调用非静态的构造方法,再通过非静态的构造方法赋值非静态变量。这样就完成了静态方法间接赋值赋值非静态变量




  • 2
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值