Open In App

Calling a non-member function inside a class in C++

Last Updated : 23 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Member Function: It is a function that can be declared as members of a class. It is usually declared inside the class definition and works on data members of the same class. It can have access to private, public, and protected data members of the same class. This function is declared as shown below:

C++




// Given Class
class memberdemo {
private:
    {
    public:
        {
            void check();
        }
 
        // Member Function
        trial::void check();
    }
}


Non-member Function: The function which is declared outside the class is known as the non-member function of that class. Below is the difference between the two:

  • The member function can appear outside of the class body (for instance, in the implementation file). But, this approach is followed, the member function must be qualified by the name of its class. This is to identify that function is a member of a particular class. But a non-member function always appears outside of a class.
  • Another difference between member functions and non-member functions is how they are called (or invoked) in the main routine.

Program 1:

C++




// C++ to illustrate the above concepts
#include <iostream>
using namespace std;
 
class A {
    int a;
 
public:
    // Member function
    void memberfn(int x)
    {
        a = x;
        cout << "Member function inside"
             << " class declared\n";
    }
 
    // Member function but definition
    // outside the class
    void memberfn2();
};
 
// Member function declared with
// scope resolution operator
void A::memberfn2()
{
    cout << "Member function but declared "
         << " outside the class\n";
}
 
// Non-member function
void nonmemberfn()
{
    cout << "Non-member function\n";
}
 
// Driver Code
int main()
{
    // Object of class A
    A obj;
 
    // Calling Member Function
    obj.memberfn(5);
    obj.memberfn2();
 
    // Calling Non-Member Function
    nonmemberfn();
 
    return 0;
}


Output:

Member function inside class declared
Member function but declared  outside the class
Non-member function

Explanation: From the above program, there are three types of cases:

  • A member function is declared and defined in the class and called using the object of the class.
  • A member function is declared in the class but defined outside the class and is called using the object of the class.
  • A non-member function that is declared outside the class but called a normal function inside the main function.

Now, the question here arises whether it is possible to call a non-member function inside a member function in a program or not. The answer is YES. Below is the program to illustrate how to call a non-member function inside a member function:

Program 2:

C++




// C++ program to illustrate the
// above approach
#include <bits/stdc++.h>
using namespace std;
 
// Function to find the factorial
// of the number N
int fact(int n)
{
    if (n == 0 || n == 1)
        return 1;
    else
        return n * fact(n - 1);
}
 
// Class Examples
class example {
    int x;
 
public:
    void set(int x) { this->x = x; }
 
    // Calling the non-member function
    // inside the function of class
    int find() { return fact(x); }
};
 
// Driver Code
int main()
{
    // Object of the class
    example obj;
 
    obj.set(5);
 
    // Calling the member function
    cout << obj.find();
 
    return 0;
}


Output:

120

Explanation: A non-member function can be called inside a member function but the condition is that the non-member function must be declared before the member function. In the above example, the same approach is followed and it becomes possible to invoke a non-member function thus the answer is the factorial of 5 i.e. 120.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads