Template mode of behavioral pattern

Source: Internet
Author: User

Defined

Template method Pattern: Defines the framework for an algorithm in an operation, and delays some steps into subclasses. The template method pattern allows subclasses to redefine some specific steps of the algorithm without altering the structure of an algorithm.

Realize

Template class

     Public Abstract classDrawperson { Public Abstract voidDrawhead ();  Public Abstract voidDrawbody ();  Public Abstract voidDrawhand ();  Public Abstract voidDrawfoot (); /// <summary>        ///template fixed, specific details and sub-class implementation/// </summary>         Public voidDraw () {drawhead ();            Drawbody ();            Drawhand ();        Drawfoot (); }    }

Specific class

     Public classJoy:drawperson { Public Override voidDrawbody () {Console.WriteLine ("Skinny Body"); }         Public Override voidDrawfoot () {Console.WriteLine ("Shorter Legs"); }         Public Override voidDrawhand () {Console.WriteLine ("Short Hands"); }         Public Override voidDrawhead () {Console.WriteLine ("The head is relatively small"); }    }

Client

    class program    {        staticvoid Main (string[] args)        {            new  Joy ();            Joy. Draw ();            Console.ReadLine ();        }    }

Template mode of behavioral pattern

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.