填空题
有如下类声明:
class MyClass
int i;
private:int j;
protected: int k;
public: int m, n;
其中,私有成员的数量为
【15】
。
【参考答案】
B
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
下面程序的运行结果是 【13】 。 #include<iostream.h> void fun(ira &a,int b=3) static int i=2; a=a+b+i; i=i+a; void main() int x=5,y=2; fun(x,y); eout<<x<< ,,; fun(x); cout<<x<<endl;
点击查看答案
填空题
头文件 【8】 中包含了处理用户控制的文件操作所需的信息。
点击查看答案
相关试题
以下程序的输出结果是( )。 #include...
以下程序的执行结果为( )。 #include...
包容类Contain和内嵌类Embed定义如下: #...
下列程序的输出结果是( )。 #include...
有如下程序: #include <iostream.h>...