怎样为含有引用成员的类定义赋值操作有如下一个类
class Test{public:string& str;Test& operator=(const Test& rhs){//[color=#FF0000]怎么定义?[/color]}};