我发现这个结构:
std::map<T, T> a = boost::assign::map_list_of(arg11, arg12)
(arg21, arg22)
;
请告诉这会发生什么以及如何在 C++ 上实现它?
我没有阅读实现,但我认为您可以使用“Accumulator”对象重现它:
template<class T>
class Acc
{
public:
Acc &operator()(T a, T b)
{
map.insert(std::make_pair(a, b));
}
operator std::map<T, T>()
{
return map;
}
private:
std::map<T, T> map;
}
每次执行 (a,b) 之类的操作时,都会调用 operator(),它只是在映射中添加 std::pair(a, b)。cast 运算符允许获取 std::map 而不是 Acc 对象。
用途是:
std::map<int, int> = Acc<int>()(1,2)(3,4)(6,7);
注意:代码未测试。