For questions related to object construction, usually in an OOP environment.
Construction is a concept of Object-Oriented languages.
Objects need to be setup for use:
- Their member variables need to be allocated
- Any Object member variables also need to be constructed
- The Object methods need to be setup for calling
This process is accomplished by construction.