"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Access Friend Functions Defined Within a Class?

How to Access Friend Functions Defined Within a Class?

Published on 2024-11-25
Browse:765

How to Access Friend Functions Defined Within a Class?

Accessing Friend Functions Defined Within a Class

When working with friend functions, it's essential to understand how they are defined and accessed. As friend functions are not members of a class, accessing them outside the class may require special considerations.

In the provided code snippet:

class A {

public:
    friend void fun(A a){std::cout 

The friend functions fun() and fun3() are defined within the class but not declared in the global scope. While fun() can be accessed directly using Argument-Dependent Lookup (ADL) due to the argument of type A, fun2() cannot be accessed without a declaration in the global scope.

To access fun2() correctly, it should be declared globally in addition to being defined as a friend function within the class:

class A {

public:
    friend void fun(A a){std::cout 

In this modified version, fun2() can be accessed outside the class as an ordinary function.

However, it's recommended to define friend functions in the usual manner, outside the class but declared as friends:

class A {
   friend void fun(A a);
   friend void fun2();
   friend void fun3();
};

void fun(A a) { std::cout 

This approach ensures that all friend functions are defined and declared correctly, making them accessible and usable as intended.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3