SFINAE 编译器问题
问题描述
我的以下代码应该检测 T
是否有 begin
和 end
方法:
The following code of mine should detect whether T
has begin
and end
methods:
这是一些测试代码:
在 g++ 4.5.1 上,输出为 1 1 1 1
.然而,在 Visual Studio 2008 上,输出为 1 1 0 0
.我做错了什么,或者这只是一个 VS 2008 错误?任何人都可以在不同的编译器上进行测试吗?谢谢!
On g++ 4.5.1, the output is 1 1 1 1
. On Visual Studio 2008, however, the output is 1 1 0 0
. Did I do something wrong, or is this simply a VS 2008 bug? Can anyone test on a different compiler? Thanks!
推荐答案
Stephan T. Lavavej 有 这个要说:
Stephan T. Lavavej has this to say:
请注意,技术上禁止获取标准库成员函数的地址.(它们可能被重载,使 &foo::bar
模棱两可,他们可以有额外的默认参数,挫败通过 static_cast
消除歧义的尝试.)
Please note that it is technically forbidden to take the address of a Standard Library member function. (They can be overloaded, making
&foo::bar
ambiguous, and they can have additional default arguments, defeating attempts to disambiguate viastatic_cast
.)
所以我想我会使用更简单的版本,它只检查嵌套的 const_iterator
类型.
So I guess I'm going to use the simpler version that only checks for the nested const_iterator
type.
这篇关于SFINAE 编译器问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!