gcc支持cbegin和cend方法

gcc support for cbegin and cend method

本文关键字:cend 方法 cbegin 支持 gcc      更新时间:2023-10-16

哪个版本的gcc编译器支持容器的免费const_iterator方法,例如:cbegincendcrbegincrend。我使用的gcc 4.6.1具有由-std=c++0x标志启用的c++0x功能,但这些方法在我的代码中无法解析。

不幸的是,标准中没有免费的函数cbegin/cend,也没有任何反向版本。不过,您总是可以使用强制转换来获得常量迭代器:

auto it = std::begin(static_cast<T const &>(x));

使用<type_traits>中的std::add_const,如果你非常需要的话,你甚至应该能够安装一些相当通用的东西。


容器成员函数cbegin/crbegin等都是C++11的一部分,GCC已经支持了一段时间;很可能是从4.3开始的(当C++11支持刚开始的时候)。GCC 4.6明确支持这些;如果您遇到问题,请发布麻烦的代码。

我的实验表明,默认情况下"cbegin"不可用(来自类似的<vector> <map> STL容器)。除非指定--std=c++0x--std=c++11

以下是我对GCC 4.8的经验:

http://ascii.io/a/4539

如果你的编译器不能支持那些--std开关(就像我在一些跨平台工具链上所做的那样),你可以只使用这样的东西:

for (std::vector<string>::const_iterator it = vec.begin(), ite = vec.end();
                                         it != ite; ++it) {
    /* ... ... */
}

这适用于不支持C++11的"自动"关键字功能的GCC版本。

适用于我(GCC 4.6.0):

#include <vector>
int main() {
  std::vector<int> vec;
  auto it = vec.cbegin();
  // int& val = *it;  // gives compiler error, as expected
}

成员函数也出现在stl_vector.h中。

你能添加自己的吗?

template< class C > 
auto cbegin( C& c ) -> decltype(c.cbegin());
template< class C > 
auto cbegin( const C& c ) -> decltype(c.cbegin())