CPP Initialization Section

Creator
Creator
Seonglae Cho
Created
Created
2023 Apr 25 9:44
Editor
Edited
Edited
2023 Apr 25 18:47
Refs
Refs
DayOfYear::DayOfYear( int monthValue, int dayValue) : month(monthValue), day(dayValue)
 
 

same with

DayOfYear::DayOfYear(int monthValue, int dayValue) { month = monthValue; day = dayValue; }
 
 

Also there should be parent class

Includes invocation of parent constructor
if do not, default base class automatically called
 
 
 

Recommendations