单项选择题

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

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;
相关试题
  • 下列程序中需要清理动态分配的数组,划线处...
  • 设置虚基类的目的是解决二义性问题,通过用...
  • 表达式“c3=c1.operator+(c2)”或...
  • 虚函数必须是类的______。
  • 在面向对象的程序设计中,将数据和处理数据...