有如下函数模板定义: template <typename T1,typename T2,typename T3> T2 plus(T1 t1,T3 t3)return t1+t3;
A、plus(3,5L);
B、plus<>(3,5L);
C、plus<int>(3,5L);
D、plus<int,double>(3,5L);
发布时间:2024-09-12 00:45:46
A、plus(3,5L);
B、plus<>(3,5L);
C、plus<int>(3,5L);
D、plus<int,double>(3,5L);