In this tutorial we learn how the RVec class can be used to adopt existing memory or allocate some.
class UponCopyPrinter {
public:
UponCopyPrinter() = default;
UponCopyPrinter(UponCopyPrinter &&) = default;
UponCopyPrinter(const UponCopyPrinter &) { std::cout << "Invoking copy c'tor!" << std::endl; }
};
{
std::cout <<
v.data() <<
" and " <<
v2.data() << std::endl;
v2.push_back(UponCopyPrinter());
std::cout <<
v.data() <<
" and " <<
v2.data() << std::endl;
}
A "std::vector"-like collection of values implementing handy operation to analyse them.
Invoking copy c'tor!
Invoking copy c'tor!
Invoking copy c'tor!
0x7ffe448fd138 and 0x7ffe448fd138
0x7ffe448fd138 and 0x55b6f7fa8260
- Date
- May 2018
- Author
- Danilo Piparo
Definition in file vo001_AdoptOrOwnMemory.C.