The C + + programming Language Learning Note the 5th chapter pointers, arrays, and structures

Source: Internet
Author: User

1. The value of the pointer to the output pointing to the character.

Now defined, Char c= ' a ', char* pc=&c. In C, it only takes printf ("%p\n", PC) to output this value, whereas in C + +, if cout<<pc<<endl; a strange string of characters, what's going on? Because the i/class in the C + + standard library overloads the << operator, it is treated as a string name when the character pointer is encountered, outputting the string that the pointer refers to. So we can convert its first to void* and then output.  cout << static_cast<const void*>(pc) << endl。有点麻烦,不过平时一般也不会要求输出这个值,所以就记住就好啦。

The C + + programming Language Learning Note the 5th chapter pointers, arrays, and structures

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.