题目内容

面向对象的三大特性是()(3分)

A. 继承性
B. 多态性
C. 封装性
D. 保密性

查看答案
更多问题

以下的C#代码,试图用来定义一个接口:publicinterfaceIFile{intA;intdelFile(){A=3;}voiddisFile();}关于以上的代码,以下描述错误的是()。(2分)

A. 可以在接口中定义变量,所以int A代码行不会出现错误;
B. 接口方法delFile是允许实现的,可以编写具体的实现函数;
C. 代码void disFile();声明无错误,接口可以没有返回值;
D. 代码void disFile();应该编写为void disFile(){};

关于垃圾回收机制的哪些叙述是对的。()(2分)

A. 程序开发者必须自己创建一个线程进行内存释放的工作。
B. 垃圾收集将检查并释放不再使用的内存。
C. 垃圾收集允许程序开发者明确指定并立即释放该内存。
D. C
E. 中程序将自动调用析构函数,销毁不在使用的对象占用的内存。

已知Dosomething定义如下:delegatevoiddosomething()类Someclass定义如下:classsomeclass{publicvoidsleep(){Console.writeline(“sleep”);}publicdosomethingm1=null;publicvoidDosleep(){……………….}}则在someclass类的方法Dosleep内,可用下列哪些方法利用变量m1调用类someclass的方法sleep?()(2分)

A. m1=new dosomething(sleep) m1()
B. m1=new dosomething( Addressof sleep) m1()
C. m1=new dosomething(sleep) m1.Invoke()
D. m1=new dosomething( Addressof sleep) m1.Invoke()

An externality is the uncompensated impact of

A. society's decisions on the well-being of society.
B. a person's actions on that person's well-being.
C. one person's actions on the well-being of a bystander.
D. society's decisions on the poorest person in the society.

答案查题题库