哦.这个到容易明白
//工程1
//part.cpp
template<class type>//原先应该加export.现在不允许了!
type foo(type a)
{ return a+1; }
//main.cpp
includ<iostream>
.
.
.
template<class type> type foo(type a);//声明
main()
{
.
.
int i=foo(5);
.
}
简单说就是普通函数的外部文件调用.而我们要用模板的形式!.试了几个编译器了.都不可以!