将const_iterator转换为迭代器&在std :: set的定义中

时间:2016-12-17 12:09:00

标签: c++ casting stl iterator set

C ++ STL使用红黑树在std::setstd::map内存储数据。我注意到set::iterator实际上是红黑树的const迭代器的typedef:

//All code snippets taken from SGI STL. https://www.sgi.com/tech/stl/

typedef _Rb_tree<key_type, value_type, _Identity<value_type>, key_compare, _Alloc> _Rep_type;
typedef typename _Rep_type::const_iterator iterator;

这是合理的,因为用户不应该通过迭代器修改集合的内容。但是set必须实现inserterase之类的操作,这些操作会调用红黑树的非常量迭代器。 SGI STL使用c风格的演员来做到这一点:

void erase(iterator __position) { 
  typedef typename _Rep_type::iterator _Rep_iterator;
  _M_t.erase((_Rep_iterator&)__position); 
}

我想知道:

  1. 为什么这个演员安全?它将_Rep_type::const_iterator投射到_Rep_type::iterator&
  2. 如何用C ++风格编写演员表? I've tried to do itstatic_castconst_cast都不会完成这项工作。 reinterpret_cast可以编译,但我不确定它是否与C风格的演员表格相同。

1 个答案:

答案 0 :(得分:0)

iterator_Rep_type::iterator是同一类模板的实例,前者使用const限定类型,后者使用相同但非const的类型。像这样:

template <class T, class U>
struct B {};

using S = B<int&, int*>;
using Sconst = B<const int&, const int*>;

对于您的问题:

  1. 这是安全的,因为两种类型的内存布局完全相同。
  2. 您不能使用static_cast,因为编译器认为这些类型无关。您必须携带重型大炮reinterpret_cast
int test() {
    S s;
    Sconst& sconst = reinterpret_cast<Sconst&>(s);
}