填空题

数据管理技术发展过程经过了人工管理、文件系统和数据库系统3个阶段,其中数据独立性最高的阶段是______。

【参考答案】

数据库系统
<上一题 目录 下一题>
热门 试题

单项选择题
有如下类声明: class MyBASE{ int k; public: void set(int n){k=n;} int get( )const{return k;} }; class MyDERIVED:protected MyBASE{ protected: intj; public: void set(int m,int n){MyBASE::set(m);j=n;} int get( )const{return MyBASE::get( )+j;} }; 则类MyDERIVED中保护的数据成员和成员函数的个数是
A.4
B.3
C.2
D.1
单项选择题
如下程序的输出结果是 #include<iostream> using namespace std; class Test{ public: Test( ){n+=2;} ~Test( ){n-=3;} static int getNum( ){return n;} private: static int n; }; int Test::n=1; int main( ){ Test*P=new Test: delete P; cout<< n= <<Test::getNum( )<<endl; return 0; }
A.n=0
B.n=1
C.n=2
D.n=3
相关试题
  • 派生类中的成员不能直接访问基类中的___...
  • 非成员函数应声明为类的______函数才...
  • 多数运算符既能作为类的成员函数重载,也能...
  • 下列程序的输出结果为2,请将程序补充完整...
  • 下面是一个栈类的模板,其中push函数将元素...