程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java 橋形式(Bridge Pattern)詳解

java 橋形式(Bridge Pattern)詳解

編輯:關於JAVA

java 橋形式(Bridge Pattern)詳解。本站提示廣大學習愛好者:(java 橋形式(Bridge Pattern)詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是java 橋形式(Bridge Pattern)詳解正文


java 橋形式(Bridge Pattern)

Bridge形式解耦,其實行的界說。它是一種構造形式。本形式觸及充任橋的接口。這座橋使詳細的類自力的接話柄施者類。

 Bridge形式解耦,其實行的界說。它是一種構造形式。

本形式觸及充任橋的接口。這座橋使詳細的類自力的接話柄施者類。

這兩品種型的類可以在不影響彼此被轉變。

實例:

interface Printer {
  public void print(int radius, int x, int y);
}//from www.j a v a2 s . c om
class ColorPrinter implements Printer {
  @Override
  public void print(int radius, int x, int y) {
   System.out.println("Color: " + radius +", x: " +x+", "+ y +"]");
  }
}
class BlackPrinter implements Printer {
  @Override
  public void print(int radius, int x, int y) {
   System.out.println("Black: " + radius +", x: " +x+", "+ y +"]");
  }
}
abstract class Shape {
  protected Printer print;
  protected Shape(Printer p){
   this.print = p;
  }
  public abstract void draw(); 
}
class Circle extends Shape {
  private int x, y, radius;

  public Circle(int x, int y, int radius, Printer draw) {
   super(draw);
   this.x = x; 
   this.y = y; 
   this.radius = radius;
  }

  public void draw() {
   print.print(radius,x,y);
  }
}
public class Main {
  public static void main(String[] args) {
   Shape redCircle = new Circle(100,100, 10, new ColorPrinter());
   Shape blackCircle = new Circle(100,100, 10, new BlackPrinter());

   redCircle.draw();
   blackCircle.draw();
  }
}



感激浏覽,願望能贊助到年夜家,感謝年夜家對本站的支撐!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved