单项选择题
下列选项中不属于软件生命周期开发阶段任务的是
A.软件测试
B.概要设计
C.软件维护
D.详细设计
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有如下类定义: class AA{ int a; public: int getRef( )eonst{return &a;} ① int getValue( )const{return a;} ② vold set(int n)eonst{a=n;} ③ friend void show(AA aA) eonst{tout<<a;} ④ }; 其中的4个函数定义中正确的是
A.①
B.②
C.③
D.④
点击查看答案&解析
单项选择题
有如下程序: #include <iostream> using namespace std; int main( ){ int*P; *P=9; cout<< The value at P: <<*P: return 0; } 编译运行程序将出现的情况是
A.编译时出现语法错误,不能生成可执行文件
B.运行时一定输出:The value at P:9
C.运行时一定输出:The value at P:*9
D.运行时有可能出错
点击查看答案&解析
相关试题
有如下类定义: class Test { public...
有如下程序: #include <iostream> u...
有如下程序: #include <lostream> u...
有如下程序: #include <iostream> u...
有如下类定义: class MyBase{ int k...