August 2020
Intermediate to advanced
656 pages
16h 15m
English

Records, unions, and classes are popular composite data types found in many modern programming languages. Incorrectly used, these data types can have a very negative impact on the performance of your software. Correctly used, however, they can actually improve the performance of your applications (compared with using alternative data structures). In this chapter we’ll explore how you can make the most of these data types to maximize the efficiency of your programs. The topics this chapter covers include:
Definitions for the record, union, and class data types
Declaration syntax for records, unions, and classes ...