⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 current.java

📁 java中最响当当的模式:观察者模式
💻 JAVA
字号:
/**
do current
*/
public class Current implements Observer, DisplayShare
{
	private double charge;
    private AbsSubject myShare;



    public Current(AbsSubject myShare)
    {
        /*register to the distributor*/
		this.myShare=myShare;
		this.myShare.registerObserver(this);
	}
	/*easy to understand*/
	public void update(double charge)
	{
		this.charge=charge;
		display();
	}
	/*display*/
	public void display()
	{
		System.out.println("\nThe current charge of this Share is "+charge);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -