[Lintcode] Toy Factory Toy Factory

Source: Internet
Author: User
Tags lintcode

Factory is a design pattern in common usage. Implement a toyfactory which can generate proper toy based on the given type.

Example
Toyfactory tf = Toyfactory ();
Toy Toy = Tf.gettoy (' Dog ');
Toy.talk ();
>> Wow

Toy = Tf.gettoy (' Cat ');
Toy.talk ();
>> Meow

The problem is still to examine the factory pattern factory pattern, with the previous shape Factory no difference, the difficulty is not very large, see the code is as follows:

/** * Your object would be instantiated and called as such: * toyfactory* tf = new Toyfactory (); * toy* Toy = Tf->gett Oy (type); * Toy->talk (); */classToy { Public:    Virtual voidTalk ()Const=0;};classDog: PublicToy {voidTalk ()Const{cout<<"Wow"<<Endl; }};classCat: PublicToy {voidTalk ()Const{cout<<"Meow"<<Endl; }};classToyfactory { Public:    /** * @param Type a String * @return Get object of the type*/Toy* Gettoy (string&type) {        if(Type = ="Dog") {            return NewDog (); } Else if(Type = ="Cat") {            return NewCat; }        returnNULL; }};

Similar topics:

Shape Factory

[Lintcode] Toy Factory Toy Factory

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.