Template Method (C ++ implementation)

Source: Internet
Author: User

// Template method. cpp: defines the entry point of the console application.
//

# Include "stdafx. H"
# Include <iostream>

Using namespace STD;

Class abstractclass
{
Public:
Abstractclass (){}
Virtual ~ Abstractclass (){}

// This function defines the algorithm outline.
Void templatemethod ()
{
Primitiveoperation1 ();
Primitiveoperation2 ();
}

Protected:
// Pure virtual function, implemented by the derived class
Virtual void primitiveoperation1 () = 0;
Virtual void primitiveoperation2 () = 0;
};

// Inherit from abstractclass to implement algorithms
Class concreateclass: Public abstractclass
{
Public:
Concreateclass (){}
Virtual ~ Concreateclass (){}

Protected:
Virtual void primitiveoperation1 ()
{
Cout <"primitiveoperation1 by concreateclass/N ";
}
Virtual void primitiveoperation2 ()
{
Cout <"primitiveoperation2 by concreateclass/N ";
}
};

 

Int _ tmain (INT argc, _ tchar * argv [])
{
Abstractclass * pconcreateclass = new concreateclass;
Pconcreateclass-> templatemethod ();

Delete pconcreateclass;

Return 0;
}

 

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.