previous
|
index
|
next
C++ Program Files
C++ programs are often divided into files in two ways:
Classes are separated from each other in files, and
Class declarations and their method implementations are placed in separate files.
This organization is done for two reasons:
To separate how a method is used from how it is implemented (procedural abstraction), and
To facilitate separate compilation of program modules
previous
|
index
|
next