Например: class Derived : public Base
{
Derived(const Base &rhs)
{
// Is this a copy constructor?
}
const Derived &operator=(const Base &rhs)
{
// Is this a copy
У меня есть определение класса, подобный следующему: class UUID
{
public:
// Using implicit copy assignment operator
private:
unsigned char buffer[16];
};
Я только что тест ус