devxlogo

Defining a Function with the ‘friend’ in a .cpp

Question:
With the following:

  friend int operator == (const cs303Point& point0, const cs303Point& point1);

in my .h file, how should the first line of the function definition look in the .cpp file?

Answer:
First of all, note that operator == returns a bool result rather than int. Therefore, it’s advisable to declare the function like this:

friend bool operator==(const cs303Point& point0, const cs303Point& point1);

As for the definition: simply copy the prototype, omitting the ‘friend’ keyword and the semicolon, open a pair of braces, and fill them with code:

// in the .cpp filebool operator==(const cs303Point& point0, const cs303Point& point1){ return ((point0.x == point1.x)&&(point0.y==point1.y));} 

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.