填空题

数据流图的类型有______和事务型。

【参考答案】

变换型
<上一题 目录 下一题>
热门 试题

填空题
在多继承中基类和派生类中同时出现______存在二义性。
单项选择题
有如下程序: #include<iostream> Using namespace std; Class Amount{ int amount; public; Amount(int n=0):amount(n){} Int getAmount()const{return amount;} Amount &operator+=(Amount a){ amount+=a.amount; return______; } }; int main(){ Amount x(3),y(7); x+=y; cout<<x.getAmount()<<endl; return 0; } 已知程序的运行结果是10,则横线处缺失的表达式是( )。
A.*this
B.this
C.&amount
D.amount
相关试题
  • 在声明派生类时,如果不显式地给出继承方式...
  • 己知下列程序的输出结果是42,请将横线处...
  • 有如下程序:#include<iostream>using ...
  • 请将下列类定义补充完整。class Base(pub...
  • 下列程序的执行结果是______。#incl...