Create a non-friend inserter. : Inserter « Overload « C++






Create a non-friend inserter.

Create a non-friend inserter.
#include <iostream>
using namespace std;

class MyClass {
public:
  int x, y;  // must be public
  MyClass() { 
     x = 0; 
     y = 0; 
  }
  MyClass(int i, int j) { 
     x = i; 
     y = j; 
  }
};

// An inserter for the MyClass class.
ostream &operator<<(ostream &stream, MyClass ob)
{
  stream << ob.x << ", " << ob.y << '\n';
  return stream;
}

int main()
{
  MyClass a(1, 1), b(10, 23);
  cout << a << b;

  return 0;
}

           
       








Related examples in the same category

1.Use a friend inserter for objects of type MyClass.Use a friend inserter for objects of type MyClass.
2.This program draws right trianglesThis program draws right triangles
3.PhoneNumber inserter functionPhoneNumber inserter function
4.An inserter can be used to output data in any formAn inserter can be used to output data in any form
5.Use friend function to operator: <<, >>Use friend function to operator: <<, >>
6.Output account info to a file using an inserter.Output account info to a file using an inserter.