7.2.1. Friends
Now that the data members of Sales_data
are private
, our read, print
, and add
functions will no longer compile. The problem is that although these functions are part of the Sales_data
interface, they are not members of the class.
A class can allow another class or function to access its nonpublic
members by making that class or function a friend. A class makes a function its friend by including a declaration for that function preceded by the keyword friend
:
class Sales_data {// friend declarations for nonmember Sales_data operations addedfriend Sales_data add(const Sales_data&, const Sales_data&);friend std::istream &read(std::istream&, ...
Get C++ Primer, Fifth Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.