填空题

在面向对象程序设计中,从外面只能看到对象的外部特征,而无需知道数据的具体结构以及实现操作的算法,这称为对象的______。

【参考答案】

封装性
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序: #include<iostream> using namespace std; class TestClass public: virtual void fun1() cout<< fun1TestClass ; virtual void fun2() cout<< fun2TestClass ;; class TestClass1:public TestClass void fun() cout<< fun1TestClass1 ;; int main() TestClass obj1,*p; TestClass1 obj2; p=&obj2; p->fun1(); p->fun2(); return 0; 该程序执行后的输出结果是( )。
A.funITestClass1 fun2TestClass
B.fun1TestClass1 fun2TestClass1
C.fun1TestClass fun2TestClass
D.fun1TestClass fun2TestClass1
填空题
数据库的逻辑模型设计阶段的任务是将______转换成关系模式。
相关试题
  • 下列程序将x、y和z按从小到大的顺序排列,...
  • operator是运算符重载时必须使用的关键字,...
  • 下列程序完成从文件读取、文件显示的同时写...
  • 在下面横线上填写适当的语句,完成程序。 ...
  • 请在下列程序中的横线处填写正确的语句。 ...