[单选题]

类模板templateclass x{…},其中友元函数f对特定类型T(如int),使函数f(x)成为x

类模板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>);

参考答案与解析:

相关试题

类模板templateclass x{...},其中友元函数f对特定类型T(如i

[单选题]类模板templateclass x{...},其中友元函数f对特定类型T(如int),使函数f(x)成为x

  • 查看答案
  • 类模板templateclassX{…},其中友元函数f对特定类型T(如int)

    [单选题]类模板templateclassX{…},其中友元函数f对特定类型T(如int),使函数f(x)成为x模板类的友元,则其说明为( )。A.friendvoidf();B.friendvoidf(x);C.friendvoidA::f();D.friendvoidC::f(x);

  • 查看答案
  • 类模板templateclass x{…},其中,友元函数f对特定类型T(如in

    [单选题]类模板templateclass x{…},其中,友元函数f对特定类型T(如int),使函数f(x&=成类模板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>&=;)

  • 查看答案
  • 类模板templateclass x{...},其中,友元函数f对特定类型T(如

    [单选题]类模板templateclass x{...},其中,友元函数f对特定类型T(如int),使函数 f(x);成为类模板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<D:: f(x<T>);

  • 查看答案
  • 类模板templateclass x(…),其中,友元函数f成为从该类模板实例化

    [单选题]类模板templateclass x(…),其中,友元函数f成为从该类模板实例化的每个模板类的友元,则类模板template<class T>class x(…),其中,友元函数f成为从该类模板实例化的每个模板类的友元,则其说明应为( )。A.friend void f();B.friend void f(x<T>&)C.friend void A::f();D.friend void C<T>::f(x<T>&):

  • 查看答案
  • 有以下程序void f(int*x,int *y){int t;t= *x;*x

    [单选题]有以下程序 void f(int*x,int *y) { int t; t= *x;*x=*y;*y=t; } main() { int a[8]={1,2,3,4,5,6,7,8},i,*p,*q; p=a;q=&a[7]; while(p<q) {f(p,q);p++;q--;} for(i=0;i<8;i++)printf("%d,",a[i]); } 程序运行后的输出结果是A.8,2,3,4,5,6,7,1,B.5,6,7,8,1,2,3,4,C.1,2,3,4,5,6,7,

  • 查看答案
  • 有以下程序: void f(int*x,int*y) { int t; t=*x

    [单选题]有以下程序: void f(int*x,int*y) { int t; t=*x;*x=*y;*y=t; } main() { int a [8]={1, 2,3,4,5, 6, 7,8},i,*p,*q; p=a;q=&a[7]; while(p<q) {f(p,q);p++;q-;} for(i=0;i<8;i++)printf("%d,"a[i]); } 程序运行后的输出结果是 ______。A.823,4,5,6,7,1,B.5,6,7,8,12,3,4,C.1,2,3,4,

  • 查看答案
  • 有以下程序:void f(int *x,int *y){ int *t; t=x

    [单选题]有以下程序:void f(int *x,int *y){ int *t; t=x; x=y ;y=t; *x=*y;}main(){ int a[8]={1,2,3,4,5,6,7,8},i,*p,*q; p=a;q=&a[7]; while(p>q) { f(p,q);p++;q--} for(i=0;i<8;i++)printf("d,",a[i]);}程序运行后的输出结果是( )。A.8,2,3,4,5,6,7,1,B.5,6,7,8,1,2,3,4,C.1,2,3

  • 查看答案
  • 有如下程序void f(int *x,int *y){ int t; t=*x;

    [单选题]有如下程序void f(int *x,int *y){ int t; t=*x;*x=*y;*y=t;}main(){ int a[6]={1,2,4,6,8,10},i,*p,*q; p=a;q=&a[5]; while(p<q) { f(p,q); p++; q--; } for(i=0;i<6;i++) printf("%d,",a[i]);}该程序的输出结果是A.1,2,4,6,8,10 B.10,8,4,6,2,1C.10,8,6,4,2,1 D.10,2,4,

  • 查看答案
  • 有以下程序void f(int x,int y){int t,if(x<y){t

    [单选题]有以下程序void f(int x,int y){ int t, if(x<y){t=x;x=y;t;}}main(){ int a=4,b=3,c=5; f(a,B) ;f(a,C) ;f(b,C) ; cout<<a<<","<<b<<","<<c<<end1;}执行后输出结果是A.3,4,5B.5,3,4C.5,4,3D.4,3,5

  • 查看答案
  • 类模板templateclass x{…},其中友元函数f对特定类型T(如int