태그 : 디자인패턴 요약보기전체보기목록닫기
- [DesignPattern - Singleton] sample1(0)2008.07.29
- [DesignPattern - Factory Method] sample1(0)2008.07.27
- [DesignPattern - Template Method] sample1(0)2008.07.21
- [DesignPattern - Adapter] sample1(4)2008.07.21
- [DesignPattern - Iterator] sample1(0)2008.07.20
- 디자인 패턴 공부(2)2008.07.20
1 2
- study. note
- 2008/07/29 20:55
Design Pattern - Singleton
1. 클래스다이어그램2. Source
Singleton.javapackage com.dazzilove.singleton.sample1;
public class Singleton {
private static Singleton singleton = new Singleton();
...
- study. note
- 2008/07/27 19:31
Design Pattern - Factory Method
1. 클래스다이어그램
2. Source
Product.java
package com.dazzilove.factorymethod.sample1.framework;
public abstract class Product {
public abstract void use()...
- study. note
- 2008/07/21 23:51
Design Pattern - Adapter
1. 클래스다이어그램
2. Source
AbstractDisplay.java
package com.dazzilove.templatemethod.sample1;
public abstract class AbstractDisplay {
public abstract void open();...
- study. note
- 2008/07/21 00:00
Design Pattern - Adapter
1. 상속을 이용한 Adapter Pattern
1.1. 클래스다이어그램
1.2.SourcePrint.java
package com.dazzilove.adapter.extend.sample1;
public interface Print {
public abstract void pri...
- study. note
- 2008/07/20 21:36
Design Pattern - Iterator
1. 클래스다이어그램
2. Source
Aggregate.java
package com.dazzilove.iterator.sample1;
import junit.framework.TestCase;
public class BookAggregateTest extends TestCas...
- study. note
- 2008/07/20 21:34
디자인 패턴 공부Iterator pattern
sample1 : "Java 언어로 배우는 디자인 패턴 입문" Chapter1. Iterator - 하나씩 열거하면서 처리한다.Adapter patternAdapter 패턴에 등장하는 역할
sample1 : "Java 언어로 배우는 디자인 패턴 입문" Chapter2. Adapter - 필요한 ...
1 2



최근 덧글