单项选择题

数据库设计的四个阶段是:需求分析、概念设计、逻辑设计和( )。

A.编码设计
B.测试阶段
C.运行阶段
D.物理设计
<上一题 目录 下一题>
热门 试题

单项选择题
下列语句不能够用于打开C根目录下文件test.txt的语句是()

A. ifstream fin;fin.open("C:\\test.txt");
B. ifstream fin("C:\\test.txt");
C.(A和B)
D. ifstream fin;fin("C:\\test.txt");

单项选择题
有下列程序,在横线添加; #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() TestClsss 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;
相关试题
  • 若执行下面的程序时,从键盘上输入5和2,...
  • 语句ofstream f( SALARY.DAT ,ios∷a...
  • 以下for语句中不是死循环的是( )。
  • 下列是模板声明的开始部分,其中正确的是
  • 下列关于this指针的叙述中,正确的是