已知程序的结果为1 2 3,请填空。 #include<iostream.h> template<class T> class A { public: T X, y, z; void display( ) {c

admin2010-12-16  34

问题 已知程序的结果为1 2 3,请填空。
   #include<iostream.h>
   template<class T>
   class A
   {
   public:
     T X, y, z;
   void display( ) {cout < < x < < " " < < y < < " " < < z;}
   };
   void main( )
   {
     A<int>a1;
    _____
    _____
    _____
     a1.display( ) ;
   }

选项

答案12 a1.x=1; 13 a1.y=2; 14 a1.z=3;

解析 通过程序的结果知道数据类型是int,所以调用时声明模板实参为int的,再对x、y、z进行赋值。
转载请注明原文地址:https://kaotiyun.com/show/pQVp777K
0

随机试题
最新回复(0)