最近的一段時間在複習設計模式~分享給你們java
設計模式是思考而後實現的過程,所謂思考就是定義各類各樣的接口,抽象類,所謂實現,就是各類實現接口或者繼承抽象類的實現類。設計模式
拋開接口和抽象類resovled的時候區別,接口體現的是順序的思考順序,抽象類體現的是順序+共享的思考方式,舉例來講明的話,汽車的生產須要組裝,噴漆等過程 沒有共享的過程因此須要接口進行實現,而對於三中電腦,每一種電腦都有不一樣的硬盤,光盤,可是假設他們的主板是一致的,那麼便採用抽象類進行實現,由於抽象類容許方法的實現,因此在抽象類中能夠對主板這個共享的相同的方法進行實現,這樣子類便不用實現了。ide
案例需求:this
計算圓,長方形的面積,要求自適應能夠經過輸入半徑或者長,寬,輸出對應的面積spa
1.Interface Shape設計
public interface Shape { public double calculateArea(); public boolean input(); }
2.Rect implements Shape3d
public class Rect implements Shape { private float width; private float height; @Override public double calculateArea() { return width * height; } @Override public boolean input() { System.out.println("請分別輸入,長,寬"); Scanner s = new Scanner(System.in); width = s.nextFloat(); height = s.nextFloat(); return true; } }
2.Circle implements Shape code
public class Circle implements Shape { private float r; @Override public double calculateArea() { return Math.PI * (double)(r*r); } @Override public boolean input() { System.out.println("請輸出半徑"); Scanner s = new Scanner(System.in); r = s.nextFloat(); return true; } }
3.ShapeProc uses Shapeblog
public class ShapeProc { private Shape shape; public ShapeProc(Shape shape) { this.shape = shape; } public double process() { shape.input(); return shape.calculateArea(); } }
4.Test test the simple design pattern繼承
public class Test { public static void main(String[] args) { // TODO Auto-generated method stub Shape circle = new Circle(); ShapeProc sp = new ShapeProc(circle); System.out.println(sp.process()); sp = new ShapeProc(new Rect()); System.out.println(sp.process()); } }
4.固然也能夠經過使用java的反射機制改寫Test的方法,使其擴展性更好一些
public class Test { public static void main(String[] args) throws Exception { // TODO Auto-generated method stub Shape circle = (Shape)Class.forName(args[0]).getConstructor().newInstance(); ShapeProc sp = new ShapeProc(circle); System.out.println(sp.process()); } }