2

我正在尝试创建一个包装 std::map 并进行检查以确保键是已批准的有效字符串之一的类,并将映射初始化为具有所有已批准的有效字符串的默认值。我在让下标运算符工作时遇到问题,特别是它的 const 版本。

这是我的类原型代码:

#include <set>
#include <string>
#include <map>

class foo {
  public:
    foo() {}
    const double & operator[](const std::string key) const {
      return data[key];
    }
  private:
    static const std::set<std::string> validkeys;
    std::map<std::string, double> data;
};

const std::set<std::string> foo::validkeys = {"foo1", "foo2"};

当我编译它时(使用带有 -std=c++0x 的 g++),我得到这个编译错误:

|| /home/luke/tmp/testmap.cc: In member function 'double& foo::operator[](std::string) const':
testmap.cc|10 col 22 error| passing 'const std::map<std::basic_string<char>, double>' as
'this' argument of 'mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const
key_type&) [with _Key = std::basic_string<char>, _Tp = double, _Compare =
std::less<std::basic_string<char> >, _Alloc = std::allocator<std::pair<const 
std::basic_string<char>, double> >, mapped_type = double, key_type = 
std::basic_string<char>]' discards qualifiers

我所做的似乎都无法解决这个问题。我努力了

  • 使 validkeys 成为 std::set 和数据 std::map
  • 使用 const char * 代替字符串
  • 返回 const double 或 double 而不是 const double &
  • 使用列表和向量而不是设置来存储有效键

我不知道我是否正确地解决了这个问题,所以如果有其他简单的方法来创建一个允许这种功能的类:

foo a;
a["foo2"] = a["foo1"] = 5.0;
// This would raise a std::runtime_error because I would be checking that
// "foo3" isn't in validkeys
a["foo3"] = 4.0;

任何建议都非常感谢。

解决方案

以下内容完全符合我的要求,当您尝试设置或获取不在有效密钥集中的密钥时,我什至有一个基本异常:

#include <iostream>
#include <string>
#include <map>
#include <set>
#include <stdexcept>

class myfooexception : public std::runtime_error
{
  public:
    myfooexception(const std::string & s)
      : std::runtime_error(s + " is not a valid key.") {}
};

class foo {
  public:
    foo() {
     for (std::set<std::string>::iterator it = validkeys.begin();
          it != validkeys.end();
          ++it) {
       data[*it] = 0.0;
     }
    }
    const double & operator[](const std::string & key) const {
      if (data.find(key) == data.end()) {
        throw myfooexception(key);
      } else {
        return data.find(key)->second;
      }
    }
    double & operator[](const std::string & key) {
      if (data.find(key) == data.end()) {
        throw myfooexception(key);
      } else {
        return data[key];
      }
    }
  private:
    static const std::set<std::string> validkeys;
    std::map<std::string, double> data;
};

const std::set<std::string> foo::validkeys = {"foo1", "foo2"};

int main(void)
{
  foo a;
  a["foo1"] = 2.0;
  a["foo1"] = a["foo2"] = 1.5;
  // a["foo3"] = 2.3; // raises exception:  foo3 is is not a valid key
  const foo b;
  std::cout << b["foo1"]; // should be ok
  // b["foo1"] = 5.0;  // compliation error, as expected: b is const.

  return 0;
}
4

4 回答 4

3

operator []没有在 中声明,const因为std::mapoperator []找不到键时也会插入一个新元素并返回对其映射值的引用。您可以使用该map::find方法而不是map::operator[]如果您希望operator[]成为const.

于 2012-02-20T07:15:52.923 回答
2

下标运算符 forstd::map是非常量的,因为如果新元素尚不存在,它会插入一个新元素。如果您希望您的地图有一个 const operator[],您需要编写一个使用map::find()和测试的地图map::end(),处理错误情况。

于 2012-02-20T07:13:51.260 回答
1

您正在尝试修改 const 对象!请删除 set.const 成员的 const 成员一旦初始化就无法修改。

于 2012-02-20T07:12:06.253 回答
0

您正在尝试分配给,std::map但您的函数已声明const并返回const。删除两者const,它应该可以工作。

于 2012-02-20T07:09:18.520 回答