单项选择题
在三级模式之间引入两层映像,其主要功能之一是()。
A.使数据与程序具有较高的独立性
B.使系统具有较高的通道能力
C.保持数据与程序的一致性
D.提高存储空间的利用率
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
阅读下面程序: #include<iostream.h> void fun(int n) int x(5); static int y(10); if(n>0) ++x; ++y; cout<<x<< , <<y<<end1; void main() int m(1); fun(m); 则该程序的输出结果是______。
点击查看答案&解析
填空题
分析以下程序的执行结果______。 #include<iostream.h> class Sample int x,y; public: Sample()x=y=0; Sample(int a,int b)x=a;y=b;) ~Sample() if(x==y) cout<< x=y <<end1; else cout<< x!=y <<end1; void disp() cout<< x= <<x<< ,y= <<y>>end1; ; void main() Sample s1(2,3); s1.disp();
点击查看答案&解析
相关试题
对基类数据成员的初始化必须派生类的构造函...
有如下类声明: class MyClass int i;...
下列程序的输出结果为: Object id=0 ...
在下面横线上填上适当的语句,完成程序。 ...
下列程序的输出结果是______。 #in...