我有以下类:
class risc { // singleton
protected:
static unsigned long registers[8];
public:
unsigned long operator [](int i)
{
return registers[i];
}
};
你可以看到我已经实现了方括号运算符“渐”。
现在我想实现它用于设定,即: risc[1] = 2
。
怎么做到呢?