【移動應用開發技術】Android中怎么實現策略模式_第1頁
【移動應用開發技術】Android中怎么實現策略模式_第2頁
【移動應用開發技術】Android中怎么實現策略模式_第3頁
全文預覽已結束

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

【移動應用開發技術】Android中怎么實現策略模式

Android中怎么實現策略模式,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。策略模式一個功能的效果,有不同的算法與策略,根據不同的選擇選擇不同的結果。簡單來說,只要你寫過程序就用過策略模式,不要說沒用過,難道if-else(switch)沒用過嗎…..if-else在其實就是一個策略模式的體現,根據不同的選擇處理不同的結果。問題如果把所有的方法全部用if-else(switch)來處理,從功能上說沒問題,但是沖代碼層面的維護與使用來說,if-else多了之后會讓類變的過于龐大,閱讀不利,修改困難解決問題使用策略模式,定義統一接口,每一個不同的功能(if-else)實現接口做一個具體類,外部調用具體類來達到不同的結果。使用場景同一個問題,有不同的解決方案一個類有多個if-else的判斷處理結果封裝SDK時上層處理結果返回的情況,調用者關心結果,不關注實現過程列入Android源碼中的動畫的TimeInterpolator,ListView的適配器代碼實現有一個商品售賣,在售賣過程中,要根據不同的用戶給予不同的價格(半價,8折,7折等等),在知道用戶的前提下,如何直接給予價格呢?(一)價格接口的實現public

interface

PriceStrategy

{

int

setPrice(int

price);

}(二)實現具體的價格類7折:public

class

seventPriceStrategy

implements

PriceStrategy

{

@Override

public

Double

setPrice(int

price)

{

return

0.7

*

price;

}

}5折:public

class

HalfPriceStrategy

implements

PriceStrategy

{

@Override

public

Double

setPrice(int

price)

{

return

0.5

*

price;

}

}(三)價格算法管理類public

class

PriceAlgorithm

{

private

PriceStrategy

priceStrategy;

public

PriceStrategy

getPriceStrategy()

{

return

priceStrategy;

}

public

void

setPriceStrategy(PriceStrategy

priceStrategy)

{

this.priceStrategy

=

priceStrategy;

}

public

Double

getPrice(int

price)

{

if(priceStrategy!=null){

return

priceStrategy.setPrice(price);

}

return

null;

}

}傳入具體的實現類,獲取返回接口(四)調用方式

PriceAlgorithm

priceAlgorithm

=

new

PriceAlgorithm();

priceAlgorithm.setPriceStrategy(new

HalfPriceStrategy());

System.out.print("\n"

+

"1塊錢"

+

"5折后的價格:"

+

String.valueOf(priceAlgorithm.getPrice(1)));

PriceAlgorithm

priceAlgorithm2

=

new

PriceAlgorithm();

priceAlgorithm2.setPriceStrategy(new

seventPriceStrategy());

System.out.print("\n"

+

"2塊錢"

+

"7折

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
  • 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論