"팩토리 메소드 패턴"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
53번째 줄: 53번째 줄:
<references/>
<references/>


==참고 자료==
==참고==
*http://en.wikipedia.org/wiki/Factory_method_pattern
*http://en.wikipedia.org/wiki/Factory_method_pattern


[[분류: 디자인 패턴]]
[[분류: 디자인 패턴]]

2017년 7월 23일 (일) 04:05 판

1 개요

factory method pattern; factory method, factory pattern
팩토리 메소드 패턴, 팩토리 메서드, 팩토리 패턴
  • 하위클래스에서 인스턴스를 생성하도록 하는 구조
  • 공장에서 제품을 만들어내듯, OO공장 인스턴스가 OO을 만들어내는 구조
  • 서브클래스에서 오브젝트 생성 방법과 클래스를 결정하도록 강제하는 구조
  • 추상 단계[1]에서는 생성하려는 객체의 클래스를 정확히 지정하지 않음
  • ConcreteCreator 클래스에 오브젝트 생성을 맡김

 

2 예제 (java)

interface CarFactory {
	public Car makeCar();
}

interface Car {
	public String getType();
}

class SedanFactory implements CarFactory {
	public Car makeCar() { return new Sedan(); }
}

class Sedan implements Car {
	public String getType() { return "Sedan"; }
}

public class Main {
	public static final void main(String[] args) {
		SedanFactory sedanFactory = new SedanFactory();
		Car car = sedanFactory.makeCar();
		System.out.println("Type: " + car.getType() );
	}
}

3 같이 보기

4 주석

  1. interface 또는 abstract class

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}