February 2008
Intermediate to advanced
752 pages
19h 5m
English

Dynamic libraries (also called shared libraries or DLLs) are independent modules that are stored in a separate file on disk and can be accessed by multiple applications. Programs usually specify which dynamic libraries they need at link time, in which case the libraries are automatically loaded when the application starts. This approach usually involves adding the library and possibly its include path to the application’s .pro file and including the relevant headers in the source files. For example:
The alternative is to dynamically load ...