Qua các series tự học về Design Pattern, Hôm nay cafedevn chia sẻ cho ace ví dụ và code cụ thể về cách sử dụng Strategy design pattern với ngôn ngữ lập trình Java. Nhằm giúp ace hiểu rõ cách sử Pattern này với Java một cách nhanh nhất và áp dụng nó vào thực tế.
Nội dung chính
Mô tả code
- Định nghĩa giao diện của một nhóm thuật toán có thể hoán đổi cho nhau
- Chi tiết triển khai thuật toán chôn lấp trong các lớp dẫn xuất
- Các lớp có nguồn gốc có thể được triển khai bằng cách sử dụng Template Method pattern
- Khách hàng của thuật toán kết hợp chặt chẽ với giao diện
Phần code
// 1. Define the interface of the algorithm
interface Strategy {
void solve();
}
// 2. Bury implementation
@SuppressWarnings("ALL")
abstract class StrategySolution implements Strategy {
// 3. Template Method
public void solve() {
start();
while (nextTry() && !isSolution()) {}
stop();
}
abstract void start();
abstract boolean nextTry();
abstract boolean isSolution();
abstract void stop();
}
class FOO extends StrategySolution {
private int state = 1;
protected void start() {
System.out.print("Start ");
}
protected void stop() {
System.out.println("Stop");
}
protected boolean nextTry() {
System.out.print("NextTry-" + state++ + " ");
return true;
}
protected boolean isSolution() {
System.out.print("IsSolution-" + (state == 3) + " ");
return (state == 3);
}
}
// 2. Bury implementation
abstract class StrategySearch implements Strategy {
// 3. Template Method
public void solve() {
while (true) {
preProcess();
if (search()) {
break;
}
postProcess();
}
}
abstract void preProcess();
abstract boolean search();
abstract void postProcess();
}
@SuppressWarnings("ALL")
class BAR extends StrategySearch {
private int state = 1;
protected void preProcess() {
System.out.print("PreProcess ");
}
protected void postProcess() {
System.out.print("PostProcess ");
}
protected boolean search() {
System.out.print("Search-" + state++ + " ");
return state == 3 ? true : false;
}
}
// 4. Clients couple strictly to the interface
public class StrategyDemo {
// client code here
private static void execute(Strategy strategy) {
strategy.solve();
}
public static void main( String[] args ) {
Strategy[] algorithms = {new FOO(), new BAR()};
for (Strategy algorithm : algorithms) {
execute(algorithm);
}
}
}
Kết quả:
start nextTry-1 isSolution-false nextTry-2 isSolution-true stop
preProcess search-1 postProcess preProcess search-2
Cài ứng dụng cafedev để dễ dàng cập nhật tin và học lập trình mọi lúc mọi nơi tại đây.
Tài liệu từ cafedev:
- Full series tự học Design Pattern từ cơ bản tới nâng cao tại đây nha.
- Các nguồn kiến thức MIỄN PHÍ VÔ GIÁ từ cafedev tại đây
Nếu bạn thấy hay và hữu ích, bạn có thể tham gia các kênh sau của cafedev để nhận được nhiều hơn nữa:
Chào thân ái và quyết thắng!