gpt4 book ai didi

c++ - 基于范围的 For 循环和 ADL

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:26:51 24 4
gpt4 key购买 nike

这是 2011 年对这个问题的扩展: Range-based for loops and ADL

使用 Visual Studio 2015,我无法使用参数相关查找 (ADL) 为自定义容器创建基于范围的 for 循环。

我在下面使用自定义容器制作了一个非常简单的测试用例:

#include <vector>

namespace Foo
{
template <typename T>
class Container
{
public:

std::vector<T> values;
};
}

template <typename T>
typename std::vector<T>::iterator begin(Foo::Container<T>& foo)
{
return foo.values.begin();
}

template <typename T>
typename std::vector<T>::iterator end(Foo::Container<T>& foo)
{
return foo.values.end();
}

使用此容器和 ADL,以下测试可以完美编译:

int main(int argc, char* argv[])
{
Foo::Container<int> values;

for (auto it = begin(values); it != end(values); ++it)
{
...
}

return 0;
}

应该的。我不确定这里是否甚至使用了 ADL,但无论如何,它是有道理的。来自 MSDN documentation ,我们有:

Keep in mind these facts about range-based for:

  • Automatically recognizes arrays.

  • Recognizes containers that have .begin() and .end().

  • Uses argument-dependent lookup begin() and end() for anything else.

根据我对 ADL 的理解以及上面的文档,以下内容也应该编译:

int main(int argc, char* argv[])
{
Foo::Container<int> values;

for (auto value : values)
{
...
}

return 0;
}

但事实并非如此。相反,我收到以下错误:

error C3312: no callable 'begin' function found for type 'Foo::Container<int>'
error C3312: no callable 'end' function found for type 'Foo::Container<int>'

那么这里发生了什么?我对 ADL 的解释不正确,或者这是 MSVC 14.0 编译器的错误?

最佳答案

您必须将 beginend 都放入 Foo 命名空间中,ADL 才能工作。这是因为 ADL 将查看相应参数的命名空间以搜索 beginend 的定义。

namespace Foo
{
template <typename T>
class Container
{
public:

std::vector<T> values;
};

template <typename T>
typename std::vector<T>::iterator begin(Foo::Container<T>& foo)
{
return foo.values.begin();
}

template <typename T>
typename std::vector<T>::iterator end(Foo::Container<T>& foo)
{
return foo.values.end();
}
}

UPD: 之所以不考虑来自全局命名空间的 beginend 是因为更新后的标准说 begin end 在关联的命名空间中查找,但不执行普通的非限定查找。这是标准 ( http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1442) 中错误修复的结果。

关于c++ - 基于范围的 For 循环和 ADL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32681697/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com