有一个类定义和一些测试某些属性的bool函数
class MemCmd
{
friend class Packet;
public:
enum Command
{
InvalidCmd,
ReadReq,
ReadResp,
NUM_MEM_CMDS
};
private:
enum Attribute
{
IsRead,
IsWrite,
NeedsResponse,
NUM_COMMAND_ATTRIBUTES
};
struct CommandInfo
{
const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
const Command response;
const std::string str;
};
static const CommandInfo commandInfo[];
private:
bool
testCmdAttrib(MemCmd::Attribute attrib) const
{
return commandInfo[cmd].attributes[attrib] != 0;
}
public:
bool isRead() const { return testCmdAttrib(IsRead); }
bool isWrite() const { return testCmdAttrib(IsWrite); }
bool needsResponse() const { return testCmdAttrib(NeedsResponse); }
};
问题是如何在调用NeedsResponse
之前将needsResponse()
设置为true或false
请注意,attributes
的类型为std::bitset
的更新: 的
我写了这个函数:
void
setCmdAttrib(MemCmd::Attribute attrib, bool flag)
{
commandInfo[cmd].attributes[attrib] = flag; // ERROR
}
void setNeedsResponse(bool flag) { setCmdAttrib(NeedsResponse, flag); }
但是我收到了这个错误:
error: lvalue required as left operand of assignment
答案 0 :(得分:1)
来自评论:
这里有两个问题
const
的数据成员。const
,则以后无法更改。因此,初始化(至少)应该具有常量值的成员。从您稍后要更改的成员中删除const
。