Defining the Trais Class

Source: Internet
Author: User
Tags traits

1 //define two types first2 structa{};3 structb{};4 5 classFoo6 {7  Public:8     //bind type A to Foo9 typedef A ClassType;Ten  One     voidfoo () A     { -Std::cout << __function__ <<Std::endl; -     } the }; -  - classBar - { +  Public: -     //bind type B to bar + typedef B ClassType; A  at     voidBar () -     { -Std::cout << __function__ <<Std::endl; -     } - }; -  in //Optional, define a traits class for Foo bar -Template<typename t> to classtest_traits + { -  Public: the typedef typename T::classtype ClassType; * }; $ Panax Notoginseng //define a template function with Foo Bar as argument -Template<typename t> the voidfunc () + { A     //If you do not define the traits class, you can use T::classtype directly here theDo_func (T (), test_traits<t>:: ClassType ()); + } -  $ //the implementation of the Func function really type a class $Template<typename t> - voidDo_func (T &ins, a a) - { the Ins.foo (); - }Wuyi  the //implementation of the Func function really B type class -Template<typename t> Wu voidDo_func (T &ins, B a) - { About Ins.bar (); $ } -  - intMainvoid) - { AFunc<foo>(); +Func<bar>(); the}

Defining the Trais Class

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.