디자인 모드 의 장식 (decorator)

// composite           
public class Decorator {
	//     
	abstract class Ingredient {
		public abstract void getDescription();
	}

	//   
	class Bread extends Ingredient {
		String desc;

		public Bread(String desc) {
			this.desc = desc;
		}

		@Override
		public void getDescription() {
			System.out.println(desc);
		}
	}
	//     
	//BreadDecorator Ingredient      
	abstract class BreadDecorator extends Ingredient {
		Ingredient ingredient;

		public BreadDecorator(Ingredient ingredient) {
			this.ingredient = ingredient;
		}
	}
	//  
	class Pork extends BreadDecorator {

		public Pork(Ingredient ingredient) {
			super(ingredient);
		}
		@Override
		public void getDescription() {
			ingredient.getDescription();
			System.out.println("pork decorate...");
		}
	}
	//   
	class Vegetable extends BreadDecorator {
		public Vegetable(Ingredient ingredient) {
			super(ingredient);
		}

		@Override
		public void getDescription() {
			ingredient.getDescription();
			System.out.println("vegetable decorate...");
		}
	}
	public static void main(String[] args){
		Decorator decorator = new Decorator();
		Ingredient ingredient = decorator.new Pork(decorator.new Bread("pork bread..."));
		ingredient.getDescription();
		
		Ingredient ingredient2 = decorator.new Vegetable(decorator.new Pork(decorator.new Bread("vegetable pork bread...")));
		ingredient2.getDescription();
	}
}
//http://miaoxiaodong78.blog.163.com/blog/static/18765136200701232434996/

좋은 웹페이지 즐겨찾기