c++11 foreach syntax and custom iterator(c++11 foreach 语法和自定义迭代器)
问题描述
我正在为一个用于代替 STL 容器的容器编写一个迭代器.目前 STL 容器在很多地方都使用 c++11 foreach 语法 例如:for(auto &x: C)
.我们需要更新代码以使用包装 STL 容器的自定义类:
I am writing an iterator for a container which is being used in place of a STL container. Currently the STL container is being used in many places with the c++11 foreach syntax eg: for(auto &x: C)
. We have needed to update the code to use a custom class that wraps the STL container:
template< typename Type>
class SomeSortedContainer{
std::vector<typename Type> m_data; //we wish to iterate over this
//container implementation code
};
class SomeSortedContainerIterator{
//iterator code
};
如何让 auto 为自定义容器使用正确的迭代器,以便能够通过以下方式调用代码?:
How do I get auto to use the correct iterator for the custom container so the code is able to be called in the following way?:
SomeSortedContainer C;
for(auto &x : C){
//do something with x...
}
通常需要什么来确保 auto 为类使用正确的迭代器?
In general what is required to ensure that auto uses the correct iterator for a class?
推荐答案
你有两个选择:
- 您提供名为
begin
和end
的成员函数,可以像C.begin()
和C.end()
; - 否则,您提供名为
begin
和end
的免费函数,可以使用参数相关查找或在命名空间std
中找到它们,并且可以像begin(C)
和end(C)
一样调用.
- you provide member functions named
begin
andend
that can be called likeC.begin()
andC.end()
; - otherwise, you provide free functions named
begin
andend
that can be found using argument-dependent lookup, or in namespacestd
, and can be called likebegin(C)
andend(C)
.
这篇关于c++11 foreach 语法和自定义迭代器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c++11 foreach 语法和自定义迭代器
基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07