Big talk design mode Note Template method mode (common)

Source: Internet
Author: User

When we are going to complete a process or a series of steps that are consistent at a certain level of detail, but an individual step is not implemented at a detailed level, we usually consider using a template method pattern to handle it.

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

The template method pattern is to realize its advantage by moving the invariant behavior to the superclass and removing the duplicated code in the subclass.

 Package Templatemethod;  Public Abstract class Template {    publicabstractvoid  operation1 ();      Public Abstract void Operation2 ();          Public void Templatemethod () {        operation1 ();        Operation2 ();    }}

 PackageTemplatemethod; Public classConcreateclassaextendsTemplate {@Override Public voidOperation1 () {System.out.println ( This+ "Opertion1"); } @Override Public voidOperation2 () {System.out.println ( This+ "Opertion2"); }     Public Static voidMain (string[] args) {Template template; Template=NewConcreateclassa ();    Template.templatemethod (); }}

Big talk design mode Note Template method mode (common)

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.