填空题

软件开发环境是全面支持软件开发全过程的______集合。

【参考答案】

软件工具
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序,在横线应添加( )。 #include<iostream> using namespace std; class TestClass public: TestClass(int n)number=n; ______∥拷贝构造函数 ~TestClass() private: int number; : TestClass fun(TestClass P) TestClass temp(p); return temp; int main() TestClass obj1(10), obj2(0); TestClass obj3(obj1); obj2=fun(obj3); return 0;
A.TestClass(TestClass &other)number=other.number;
B.TestClass(TestClass other)number=other.number;
C.TestClass(TestClass &other)number;)
D.TestClass(&other)number=other.number;
填空题
数据结构分为逻辑结构和存储结构,循环队列属于______结构。
相关试题
  • 有如下类声明: class MyClass int i;...
  • 若下面程序运行时输出结果为: 1,A,1...
  • 下列函数的功能是判断字符串str是否对称,...
  • 有如下程序: #include<iostream> usi...
  • 以下程序的输出结果是______。 #in...