Language Mapping for Structs
  • The Auction's Date struct is:
      struct Date
      {
          unsigned long theYear;
          Month theMonth;
          unsigned short theDay;
          unsigned long theSecond;
      } ;
      
  • This is mapped to the struct shown in Code Sample 5
    • Member variables for each field
    • A default constructor, a copy constructor, and an assignment operator

Next Slide >>