Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 295 Bytes

item10.md

File metadata and controls

25 lines (23 loc) · 295 Bytes

令operator=返回一个reference to *this

class Widget{
	public:
		...
		Widget& operator=(const Widget& rhs)
		{
			...
			return *this;
		}
		Widget& operator+=(const Widget& rhs)
		{
			...
			return *this;
		}
		Widget& operator=(int rhs)
		{
			...
			return *this;
		}
};