填空题

已知int DBL(int n){return n+n;}和long DBL(long n){return n+n}是一个函数模板的两个实例,则该函数模板的定义是______。

【参考答案】

template<class T> T DBL(T n){return n+n;}