Advanced C + + learning--templates

Source: Internet
Author: User

Templates and overloads are similar, more convenient than overloading

There are usually two kinds of forms: function Templates and class templates ;

function templates for functions with different parameter types only;

Class templates are for classes that differ only in data members and member function types .

A simple function template

Template <class t> void Swap (t& A, t& b)

{

。。。

}

When the template is called, T is replaced by int or double, etc.

A simple class template

Template<class T> class A

{

Public

T A;

T b;

t hy (t C, t &d);

};

Http://www.cnblogs.com/gw811/archive/2012/10/25/2738929.html

Advanced C + + learning--templates

Related Article

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.