有如下函数模板:template<class T>T square(T x){return x*x;}其中T是
A.函数形参
B.函数实参
C.模板形参
D.模板实参
第1题:
类模板template<class T>class x{…},其中,友元函数f对特定类型T(如int),使函数f(x<int>&=成为x<int>模板类的友元,则其说明为( )。
A.friend void f();
B.friend void f(x<T>&=;)
C.friend void A::f()
D.friend void C<T>::f(x<T>&=;)
第2题:
如下函数模板: template<Class T>T square(T x){return x*x;} 其中T是( )。
A.函数形参
B.函数实参
C.模板形参
D.模板实参
第3题:
有如下函数模板: template<class T>T square (Tx) {return x*x;) 其中T是( )
A.函数形参
B.函数实参
C.模板形参
D.模板实参
第4题:
类模板template<class T>class x{…},其中友元函数f对特定类型T(如int),使函数f(x<int>)成为x<int>模板类的友元,则其说明为( )。
A.friend voidf();
B.friend voidf(x<T>);
C.friend voidA::f();
D.friend void C<T>::f(x<T>);
第5题:
类模板template<class T>class x{...},其中友元函数f对特定类型T(如int),使函数f(x<int>)成为x<int>模板类的友元,则其说明为( )。
A.friend voidf();
B.friend voidf(x<T>);
C.friend voidA::f();
D.friend void C<T>::f(x<T>);