int x, y, z;
x = y = z = 15; // 연속적인 대입 (chaining)
x = (y = (z = 15));
class Widget {
public:
    Widget& operator=(const Widget& rhs) // 반환 타입은 현재 클래스의 참조형
    {
        ...
        return *this; // 왼쪽 피연산자 객체를 반환
    }
};

💫Things to Remember