下列说法中,正确的是()。
A. 派生类对象可以强制转换为基类对象
B. 在任何情况下,基类对象都不能转换为派生类对象
C. 接口不可以实例化,也不可以引用实现该接口的类的对象
D. 基类对象可以访问派生类的成员
以下的C#代码,试图用来定义一个接口:public interface IFile{ int A; int delFile() {A = 3; } void disFile();}关于以上的代码,以下描述错误的是()。
A. 以上的代码中存在的错误包括:不能在接口中定义变量,所以int A代码行将出现错误
B. 以上的代码中存在的错误包括:接口方法delFile是不允许实现的,所以不能编写具体的实现函数
C. 代码void disFile();定义无错误,接口可以没有返回值
D. 代码void disFile();应该编写为void disFile(){};
下列代码输出为():classFather{publicvoidF(){Console.Write("A.F");}publicvirtualvoidG(){Console.Write("A.G");}}classSon:Father{newpublicvoidF(){Console.Write("B.F");}publicoverridevoidG(){Console.Write("B.G");}}classoverride_new{staticvoidMain(){Sonb=newSon();Fathera=b;a.F();b.F();a.G();b.G();}}
A.FB.FA.GB.G
B. A.FB.FB.GB.G
C. A.FA.FB.GB.G
D. B.FB.FB.GB.G
对下面的C # 程序:using System;public interface IAccount{ void PosInterest(); void DeductFees(int feeSchedule); }class BusinessAccount : IAccount{ int A; public static void Main() {BusinessAccount B = new BusinessAccount(); Console.WriteLine(B.A); Console.ReadLine(); } public void IAccount.PosInterest() { A = A+1; } public void IAccount.DeductFees(int feeSchedule) { A = A + feeSchedule; }}以下的说法正确的是 ()
A. 程序将出现编译错误,指示不能在实现接口BusinessAccount的类中定义成员 A.
B. 程序将出现编译错误,指示Public关键字对接口项无效
C. 程序编译正常,但是出现运行时错误,指示变量A没有初始化
D. 程序将正常运行,输出为0