class Book { private: const std::string title; const int pages; public: Book() : title("Diary"), pages(100) {} // Member initializer list };