Discussion: Who’s Up First?
Execute the code to understand the output and gain insights into constructors.
We'll cover the following...
Run the code
Now, it’s time to execute the code and observe the output.
C++ 17
#include <iostream>struct Resource{Resource(){std::cout << "Resource constructed\n";}};struct Consumer{Consumer(const Resource &resource){std::cout << "Consumer constructed\n";}};struct Job{Job() : resource_{}, consumer_{resource_} {}Consumer consumer_;Resource resource_;};int main(){Job job;}
...