填空题

数据库系统中实现各种数据管理功能的核心软件是______。

【参考答案】

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

填空题
在下列的程序的横线处填上适当的语句,使该程序的输出为12。#include<iostream>using namespace std;class TestClass{public:int a,b;TestClass(int i,int j){a=i;b=j;}};class TestClass1:public TestClass{int a;public:TestClass1(int x):TestClass(x,x+1){}void show(){______; 输出基类数据成员a的值cout<<b<<endl;}};int main(){TestClass1 d(1);d.show();return 0;}
填空题
虚函数必须是类的______。
相关试题
  • 请将下列栈类Stack补充完整。class Stack...
  • 已知类sample是一个抽象类,其成员函数disp...
  • 若要访问指针变量p所指向的数据,应使用表...
  • 请将下列程序补充完整,使得输出结果为bbaa...
  • 在面向对象的程序设计中,将数据和处理数据...