An example of friend function and friend class declaration

Source: Internet
Author: User

Note:
A friend is a normal function or class that is defined outside a class, but it needs to be described in the class, and in order to distinguish it from the member functions of that class, the keyword friend is preceded by the description. A friend is not a member function, but it can access a private member in a class. Therefore, a friend declaration can only appear in the class definition. Because the friend is not a member of the authorization class, it is not affected by the public private and protected of the declaration area of the class in which it resides. A declaration of a friend function can appear anywhere in the class
Class A{friend class a_friend_class;friend void a_friend_function (void);}; Class A_friend_class{};void a_friend_function (void) {}

An example of friend function and friend class declaration

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.