MyRect r1("hello");

MyRect r2("fck!");


MyRect *rp = &r1;


std::cout << &r1 << std::endl;

std::cout << &r2 << std::endl;


std::cout << &rp << std::endl;

std::cout << rp << std::endl;


*rp 이런식으로 출력되게 하고 싶은데..