单项选择题

函数模板:template     T add(T x,T y) { return x+y;}   下列对add函数的调用不正确的是( )。

A. add< >(1,2)
B. add(1,2)
C. add(1.0,2)
D. add(1.0,2.0)