一个类的定义如下,在主程序中定义对象t,且使对象t的num=20,并使用show()函数输出这个对象的值。#include using namespace std;class Test{private:int num;public: Test(int n){ num=n; }void show() { cout<
举一反三
- 阅读以下程序,写出运行结果。 #include using namespace std; class Test { private: int num; public: Test(); Test(int n); }; Test::Test() { cout << "Init defa" << endl; num = 0; } Test::Test(int n) { cout << "Init" << " " << n << endl; num = n; } int main() { Test x[2]; Test y(15); return 0; }
- 有以下类定义:class graphic{private:int n;char ch;public:graphic(int a,char c);void show( );};在main函数中定义一个对象graphic A(5,’*’);调用函数show程序输出为:* * * * ** * * ** * ** **定义一个对象graphic A(3,’#’);调用函数show程序输出为:# # ## ## 请写出相应程序实现之。
- 以下程序的输出结果是 。 #include<iostream> using namespace std; int main() { int num = 50; int& ref = num; ref = ref + 10; cout <<"num = "<<num<<endl; num = num + 40; cout <<"ref = "<<ref<<endl; return 0; }
- 编译运行如下Java代码,输出结果是。 public class Test{ public static void main(String[] args){ int num=5; if(num<=5){ num+=2; System.out.println(num); } System.out.println(num+5); } }
- 在下列类族声明的代码中,正确的访问类N的成员a的语句为 。 class N { public: int a; void display(){cout<<″A::a=”<<a<<endl;} }; class A:public N { public: int a1; }; class B:public N { public: int a2; }; class C :public A,public B { public : int a3; void show{cout<<″a3=″<<a3<<endl;} }; int main { C c1;//定义C类对象c1 ┆ }