在C中,有一个函数本地类型的函数是可以的:
int main() { struct S { static void M(const S& s) { } }; S s; S::M(s); }
但是没有确定的模板可以:
template<typename T> void Foo(const T& t) { } int main() { struct S { } s; Foo(s); // Line 5: error: no matching function for call to 'Foo(main()::S&)' }
14.3.1 paragraph 2 in the c++ standard.
A type with no linkage […] shall not be used as a template-argument for a template type-parameter
为什么C不允许这样做?
到目前为止我听到的最好的解释是内部类型没有链接,这可能意味着将它们作为arg的函数必须没有链接.但是我没有理由看到模板实例化必须具有链接.
附:请不要只说“thats not allowed because the standard says it’s not”