Use the template to determine the type of a variable during compilation

Source: Internet
Author: User

Using templates can accomplish a lot of seemingly incredible things, such as the following, you can achieve static type judgment during compilation.

 

# Include <string>
# Include <iostream>
 
Template <typename T>
Class TypeChecker;
 
Template <> class TypeChecker <std: string>
{
Public:
 
Static const int TYPE = 1;
};
 
Template <> class TypeChecker <const char *>
{
Public:
 
Static const int TYPE = 2;
};
 
Template <> class TypeChecker <char *>
{
Public:
 
Static const int TYPE = 3;
};
 
Int main ()
{
Std: string dummy = "";
If (TypeChecker <typeof (dummy) >:: TYPE = 1)
{
Std: cout <"std: string" <std: endl;
}
 
Char * data = "";
If (! TypeChecker <typeof (data) >:: TYPE = 2)
{
Std: cout <"const char *" <std: endl;
}
 
}

From this we can see that the template basically defines all the situations you need, and then let the compiler choose which one applies.


From unintentional cloud

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.