https://rentry.org/PPP2_p317a

// Code derived from Stroustrup's PPP2 book
// § 9.4.5 Referring to the current object
//  -and beginning on p 317

#include <iostream>

using std::cout;

class Date {
 public:
  Date(int yy, int mm, int dd) : y{yy}, m{mm}, d{dd}
  {
    // . . .
  }

  void add_day(int n) { d += n; }  // naive

  int year() { return y; }
  int month() { return m; }
  int day() { return d; }

  // ...

 private:
  int y, m, d;  // year, month, day
};

void f(Date d1, Date d2) { cout << d1.month() << ' ' << d2.month() << '\n'; }

int main()
{
  Date a{1994, 03, 29};
  Date b{2000, 02, 15};

  f(a, b);
}

build & run:

g++ -std=c++20 -O2 -Wall -pedantic ./ch_09/main_p317a.cpp && ./a.out

PrevUpNext

Edit
Pub: 06 Apr 2023 17:21 UTC
Edit: 03 May 2023 01:10 UTC
Views: 393