Ein besonderer ``Freund''

class Point
{  
  friend ostream& operator << (ostream&, const Point&);
  ...
};

ostream& operator << (ostream& s, const Point& p)
{
  return s << '(' << p.x << ',' << p.y << ')';
}

previous up next


© 1997 Gottfried Rudorfer, C++-AG, Lehrveranstaltungen, Abteilung für Angewandte Informatik, Wirtschaftsuniversität Wien, 12/10/1998