Output account info to a file using an inserter. : Inserter « Overload « C++






Output account info to a file using an inserter.

Output account info to a file using an inserter.

#include <iostream>
#include <fstream>
#include <cstring>
using namespace std;

class account {
  int custnum;
  char name[80];
  double balance;
public:
  account(int c, char *n, double b) 
  {
    custnum = c;
    strcpy(name, n);
    balance = b;
  }
  friend ostream &operator<<(ostream &stream, account ob);
};

ostream &operator<<(ostream &stream, account ob) 
{
  stream << ob.custnum << ' ';
  stream << ob.name << ' ' << ob.balance;
  stream << '\n';

  return stream;
}

int main()
{
  account  Rex(1011, "Joe", 12323.34);
  ofstream out("accounts", ios::out | ios::binary);

  if(!out) {
    cout << "Cannot open output file.\n";
    return 1;
  }

  out << Rex;

  out.close();

  return 0;
}



           
       








Related examples in the same category

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