這是傳說,必須迷戀它 觀察者模式

2022-01-12 05:12:32 字數 2269 閱讀 9259

code

using

system;

namespace

observerpattern

//////

包含事件資料的類,它是在事件觸發時,傳遞資料用的

///public

class

downloadeventargs : eventargs

set}

}///

///主題

///public

class

downloadingfile : isubject

set}

private

bool

isdownload;

//////

///public

bool

isdownload

set}

public

delegate

void

downloadfileeventhandler(

object

sender, downloadeventargs args); 

//定義委託

public

event

downloadfileeventhandler downloadfileop; 

//宣告事件

public

void

notify()}}

//////

抽象觀察者

///public

abstract

class

observer

//////

提示音///

public

class

toner : observer

is downloaded successful.

", e.name);}}

//////

///public

class

logger : observer

is downloaded successful at .

", e.name, datetime.now.tostring());}}

//////

客戶端呼叫

///public

class

program}}

正像上面**裡注釋的那樣,實際的專案中,觀察者更新自己的方法名並不一定叫update,我們改進一下**中的方法名,讓它們看上去更實際一些:

code

using

system;

namespace

observerpattern

//////

包含事件資料的類,它是在事件觸發時,傳遞資料用的

///public

class

downloadeventargs : eventargs

set}

}///

///主題

///public

class

downloadingfile : isubject

set}

private

bool

isdownload;

//////

///public

bool

isdownload

set}

public

delegate

void

downloadfileeventhandler(

object

sender, downloadeventargs args); 

//定義委託

public

event

downloadfileeventhandler downloadfileop; 

//宣告事件

public

void

notify()}}

//////

提示音///

public

class

toner 

is downloaded successful.

", e.name);}}

//////

///public

class

logger 

is downloaded successful at .

", e.name, datetime.now.tostring());}}

//////

客戶端呼叫

///public

class

program}}

python觀察者模式 python 觀察者模式

python 觀察者模式 前言e 寫的倉促就不截uml類圖了,書本chapter10,p313能看到圖 一旦觀察的主題有更新,就會通知到觀察者們,下面的例子是最簡單的乙個觀察者範例,假設這是一群投機分子密切關注 軍 火 倉庫的產品與數量變動 class inventory def init self...

觀察者模式

觀察者模式 observer 完美的將觀察者和被觀察的物件分離開。舉個例子,使用者介面可以作為乙個觀察者,業務資料是被觀察者,使用者介面觀察業務資料的變化,發現資料變化後,就顯示在介面上。物件導向設計的乙個原則是 系統中的每個類將重點放在某乙個功能上,而不是其他方面。乙個物件只做一件事情,並且將他做...

觀察者模式

觀察者模式定義了一種一對多的依賴關係,讓多個觀察者物件同時監聽某乙個主題物件。這個主題物件在狀態上發生變化時,會通知所有觀察者物件,讓他們能夠自動更新自己 任何乙個模式都是離不開角色的,這裡也會有幾種角色 抽象主題角色 把所有對觀察者物件的引用儲存在乙個集合中,每個抽象主題角色都可以有任意數量的觀察...