Explore Connect Documentation
Snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <iostream>
using namespace std;
class Point {
private:
  // fields are accessible only to methods belonging to point
  double x;
  double y;
public:
  Point() {}
  // constructor accepting two arguments, called by a 
  // statement such as: Point p(1, 2);
  Point(double a_x, double a_y) : x(a_x), y(a_y) {}
  // get value of x, const implies that the method does not 
  // modify the object
  double get_x() const {
    return x;
  }
  
  // get value of y, const implies that the method does not 
  // modify the object
  double get_y() const {
    return y;
  }
  // overload addition operator (+)
  Point operator+(const Point &p) const {
    Point result;
    
    result.x = this->x + p.x;
    result.y = this->y + p.y;
    
    return result;
  }
};
ostream& operator<<(ostream& os, const Point &p) {
  os << '(' << p.get_x() << ',' << p.get_y() << ')';
  
  return os; // to support operator chaining
}
int main() {
  Point p1(1,2);
  Point p2(2,3);
  Point p3 = p1 + p2;  // calls the overloaded + operator
  
  // calls the overloaded << operator thrice for points
Press desired key combination and then press ENTER.