软件结构中有度量软件结构的术语,而表示控制的总分布的术语是( )。
A.深度
B.宽度
C.扇出
D.扇入
参考答案:B
合作
给出下面程序的输出结果。 #include<iostream.h> class A private:int a; public:void set(int x)a=x;void show()cout<<"a:"<<a<<","; ; class B:public A private:int b; public:void set(int x=0)A::set(x);b=x+10;void set(int x,int y)A::set(x);b=y;void show()A::show();cout<<"b="<<b<<endl; ; void main() B b; b.set(10);b.show(); b.set(30,50);b.show();