填空题

在结构化分析方法中,用于描述系统中所用到的全部数据和文件的文档称为______。

【参考答案】

数据字典
<上一题 目录 下一题>
热门 试题

填空题
下面是复数类complex的定义,其中作为友元函数重载的运算符“--”的功能是将参数对象的实部减1,然后返回对该对象的引用;请补充完整。 class complex private: int real; int imag; public: complex(int r=0,int i=0):real(r),imag(i) void show() cout<<real<<(imag<0 - : + )<<imag<<’i’; ______; ; complex& operator--(complex &c) c.real--; return c;
填空题
有如下程序: #include<iostream> using namespace std; class A public: A()cout<< A ; ~A()cout<< A ; ; class B Aa; public: B()cout<< B ; ~B()cout<< B ; ; int main() B b; return 0: 程序的输出结果是______。
相关试题
  • 要在类的对象上使用运算符,除了运算符__...
  • 下列程序编译错误,因为add函数返回值是一...
  • 有如下程序: #include<iostream> usi...
  • 目前,有两种重要的高级语言,分别是结构化...
  • 在面向对象的设计中,用来请求对象执行某一...