与我的预期相反,该程序有效:
#include <iostream>
namespace a { struct item{}; }
namespace b { struct item{}; }
template<typename T>
void func(T t) { do_func(t); }
int main()
{
func(a::item{});
func(b::item{});
}
namespace a { void do_func(item) { std::cout << "a::func\n"; } }
namespace b { void do_func(item) { std::cout << "b::func\n"; } }
输出:
a::func
b::func
使用在线编译器进行验证:
如果 的实例化func<T>
发生在 的主体中,main
那么我预计会发生这种情况a::do_func
并且b::do_func
尚未声明。
这怎么行?
更新
根据@Marc Claesen,上述工作的原因是:
在读取所有源代码后执行模板实例化
但是,那么为什么这段代码不起作用:
#include <iostream>
template<typename T>
void func(T t) { do_func(t); }
int main()
{
func(1);
}
void do_func(int) { std::cout << "do_func(int)\n"; }
见gcc-4.8:
error: 'do_func' was not declared in this scope,
and no declarations were found by argument-dependent
lookup at the point of instantiation [-fpermissive]
error: call to function 'do_func' that is neither
visible in the template definition nor found by
argument-dependent lookup
所以似乎需要函数模板和ADL的结合才能使其工作。
但是,我不明白为什么会这样..