Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using std::cout;
- using std::endl;
- class MeuObjeto
- {
- public:
- MeuObjeto(int xx, int yy);
- ~MeuObjeto();
- MeuObjeto& operator=(const MeuObjeto& mo);
- private:
- int x;
- int y;
- };
- MeuObjeto::MeuObjeto(int xx, int yy)
- {
- x = xx;
- y = yy;
- cout << "Construtor " << x << " " << y << endl;
- }
- MeuObjeto::~MeuObjeto()
- {
- cout << "Destrutor " << x << " " << y << endl;
- }
- MeuObjeto& MeuObjeto::operator=(const MeuObjeto& mo) {
- x = mo.x;
- //y
- cout << "Copia" << endl;
- return *this;
- }
- int main() {
- MeuObjeto* mo1 = new MeuObjeto(1, 3);
- MeuObjeto* mo2 = new MeuObjeto(2, 4);
- *mo2 = *mo1;
- delete mo2;
- delete mo1;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement