下列函数模板的定义中,合法的是( )。
A: templateT abs(T X){return x<07-x:X;}
B: template ClassT abs(T x){return x<07-X:x;}
C: template Tabs(T X){return x<07-x:X;}
D: template T abs(T x){return X<0-X:x;}
A: templateT abs(T X){return x<07-x:X;}
B: template ClassT abs(T x){return x<07-X:x;}
C: template Tabs(T X){return x<07-x:X;}
D: template T abs(T x){return X<0-X:x;}
举一反三
- 下列函数模板定义中错误的是 A: template<class Q> B: template<class Q> Q F(Q x){return Q+x;} Q F(Q x){return x+x;} C: template<class T> D: template<class T> T F(T x){return x * x;} bool F(T x){return x>1;}
- 下面的函数模板定义中错误的是______ 。 A: A) template<class Q > B: QF (Q x)return Q +x; C: B) template<class Q > D: QF (Q x)returnx/x; E: C) template <class T > F: T F(T x) return x*x; G: D) template <class T> H: bool F (T x) return x>1;
- 如果要实现计算x绝对值的功能,下面程序有错误的是? A: int fun(int x){ if(x<0) return -x;<br> return x; } B: int fun(int x){ if(x<0) return -x;<br> else return x; } C: int fun(int x){ if(x<0) return -x;<br> if(x>0) return x; } D: int fun(int x){ if(x<0) return -x;<br> else if(x==0) return x; else return x; }
- 以下函数定义正确的是 ( ) A: def x:return 1 B: def _x(): return 1 C: def !x(): return 1 D: def 求和(x, y): return x + y
- 下列哪组语句可以将变量X、Y的值互换: A: X=Y:Y=X B: T=X:Y=X:X=T C: T=Y:Y=X:X=T D: X=T:T=X:Y=T