LintCode 장난감 공장

1341 단어
제목.
공장 모델 은 흔히 볼 수 있 는 디자인 모델 이다.장난감 공장 Toy Factory 를 실현 하여 서로 다른 장난감 류 를 만 드 세 요.고양이 와 개 두 가지 장난감 만 있다 고 가정 할 수 있다.본보기
ToyFactory tf = ToyFactory();
Toy toy = tf.getToy('Dog');
toy.talk(); 
>> Wow

toy = tf.getToy('Cat');
toy.talk();
>> Meow

분석 하 다.
이 문 제 는 비교적 간단 하 다. 디자인 모델 에서 공장 모델 의 사용 을 고찰 하면 나의 문집 디자인 모델 중의 공장 모델 을 참고 할 수 있다.
코드
/**
 * Your object will be instantiated and called as such:
 * ToyFactory tf = new ToyFactory();
 * Toy toy = tf.getToy(type);
 * toy.talk();
 */
interface Toy {
    void talk();
}

class Dog implements Toy {
    // Write your code here
    public void talk() {
        System.out.println("Wow");
   }
}

class Cat implements Toy {
    // Write your code here
    public void talk() {
        System.out.println("Meow");
   }
}

public class ToyFactory {
    /**
     * @param type a string
     * @return Get object of the type
     */
    public Toy getToy(String type) {
        // Write your code here
        if (type == null) {
            return null;
        }       
        if (type.equalsIgnoreCase("Dog")) {
            return new Dog();
        } else if(type.equalsIgnoreCase("Cat")) {
            return new Cat();         
        }
        return null;
    }
}

좋은 웹페이지 즐겨찾기