Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          constructors-point-rectangle/boiled-down-for-notes-cpp11/point.h - The Point class.Lecture 4 - slide 5 : 40
Program 1

// We are about to illustrates constructors with constructor chaining in C++ 11

class Point {
private: 
  double x, y;

public:
  Point();                    
  Point(double x);            
  Point(double x, double y);  

  // other methods
};