填空题

已知:double A(double a)return ++a;)和int A(int a)return ++a;)是一个函数模板的两个实例,则该函数模板定义为______。

【参考答案】

template <typename T>
T A(T a){return a++;}