已知接口IHello和类Base、MyClass的定义如下interfaceIHello{voidHello();}classBase:IHello{publicvoidHello(){System.Console.WriteLine("HelloinBase!");}}classDerived:Base{publicvoidHello(){System.Console.WriteLine("HelloinDerived!");}}则下列语句在控制台中的输出结果为_____。IHellox=newDerived();x.Hello();
A: HelloinBase!
B: HelloinDerived!
C: HelloinBase!HelloinDerived!
D: HelloinDerived!HelloinBase!.
A: HelloinBase!
B: HelloinDerived!
C: HelloinBase!HelloinDerived!
D: HelloinDerived!HelloinBase!.
举一反三
- 关于System.Console.WriteLine(“Hello World!”)说法不正确的是() A: System是一个类。 B: 中间的“.”称为点运算符,用于成员访问。 C: Console是一个类。 D: WriteLine是Console的静态方法。
- 在语句System.Console.WriteLine(“Hello!”)中,System是一个。
- Console类是System命名空间中的一个类,该类用于实现控制台的基本输入输出,其中完成“输出一行文本”的方法是( )。 A: WriteLine() B: Write () C: ReadLine() D: Read()
- 假设变量x的值为25,要输出x的值,下列正确的语句是() A: System.Console.writeline(“x”); B: System.Console.WriteLine(“x”); C: System.Console.WriteLine(“x={0}”,x); D: System.Console.WriteLine(“x={x}”);
- 假设变量x的值为25,要输出x的值,下列正确的语句是() A: A System.Console.writeline(“x”); B: B System.Console.WriteLine(“x”); C: C System.Console.WriteLine(“x={0}”,x); D: D System.Console.WriteLine(“x={x}”);