Special Use of # And # In C ++

Source: Internet
Author: User

1. Use # to convert the input content to a string.

Merge two parameters.

 
# Include <iostream> using namespace STD; // convert the input content to a string # define alltostring (STR) # STR // paste the two parameters together # define alltoparter (parm1, parm2) parm1 # parm2 int main () {cout <alltostring (Hello hxy !) <Endl; // output Hello hxy! Cout <alltoparter ("girl", "friend") <Endl; // output girlfriendreturn 0 ;}

2. When the parameter contains another macro.

Note that macro parameters are not expanded when '#' or '#' is used in macro definitions.

That is:

 
# Include <iostream> using namespace STD; // convert the input content to a string # define alltostring (STR) # STR # define two 2int main () {cout <alltostring (two) <Endl; // output tworeturn 0 ;}

To avoid this, you need to add a macro in the middle for conversion. For example:

 
# Include <iostream> using namespace STD; // convert the input content to a string # DEFINE _ alltostring (STR) # STR # define alltostring (STR) _ alltostring (STR) # define two 2int main () {cout <alltostring (two) <Endl; // output 2 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.