Overloading the Comma Operator : overload comma operator « Operator Overloading « C++ Tutorial

Home
C++ Tutorial
1.Language Basics
2.Data Types
3.Operators statements
4.Array
5.Development
6.Exceptions
7.Function
8.Structure
9.Class
10.Operator Overloading
11.Pointer
12.File Stream
13.template
14.STL Introduction
15.string
16.vector
17.list
18.bitset
19.set multiset
20.valarray
21.queue stack
22.deque
23.map multimap
24.STL Algorithms Modifying sequence operations
25.STL Algorithms Non modifying sequence operations
26.STL Algorithms Binary search
27.STL Algorithms Sorting
28.STL Algorithms Merge
29.STL Algorithms Min Max
30.STL Algorithms Iterator
31.STL Algorithms Heap
32.STL Algorithms Helper
C / ANSI-C
C Tutorial
C++
Visual C++ .NET
C++ Tutorial » Operator Overloading » overload comma operator 
10.12.2.Overloading the Comma Operator
#include <iostream>
using namespace std;
   
class loc {
  int longitude, latitude;
public:
  loc() {}
  loc(int lg, int lt) {
    longitude = lg;
    latitude = lt;
  }
   
  void show() {
    cout << longitude << " ";
    cout << latitude << "\n";
  }
   
  loc operator+(loc op2);
  loc operator,(loc op2);
};
   
// overload comma for loc
loc loc::operator,(loc op2)
{
  loc temp;
   
  temp.longitude = op2.longitude;
  temp.latitude = op2.latitude;
  cout << op2.longitude << " " << op2.latitude << "\n";
   
  return temp;
}
   
// Overload + for loc
loc loc::operator+(loc op2)
{
  loc temp;
   
  temp.longitude = op2.longitude + longitude;
  temp.latitude = op2.latitude + latitude;
   
  return temp;
}
   
int main()
{
  loc ob1(1020), ob2530), ob3(11);
   
  ob1.show();
  ob2.show();
  ob3.show();
  cout << "\n";
   
  ob1 = (ob1, ob2+ob2, ob3);
   
  ob1.show()// displays 1 1, the value of ob3
   
  return 0;
}
10.12.overload comma operator
10.12.1.overload comma for Point
10.12.2.Overloading the Comma Operator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.