January 2018
Intermediate to advanced
374 pages
9h 53m
English
We can construct a Buffer object like this:
auto float_array = Buffer({0.0f, 0.5f, 1.0f, 1.5f});
The actual object will then look like this in computer memory:

The copy-constructor, copy-assignment, and destructor are invoked in the following cases:
auto func() {
// Construct
auto b0 = Buffer({0.0f, 0.5f, 1.0f, 1.5f}); // 1. Copy-construct
auto b1 = b0; // 2. Copy-assignment as b0 is already initialized
b0 = b1; // 3. When the function exits, the destructors are automatically invoked
}