黑马程序员技术交流社区

标题: 继承与构造函数的调用问题 [打印本页]

作者: 马林康    时间: 2012-7-24 18:22
标题: 继承与构造函数的调用问题
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;

  5. namespace ConsoleApplication1
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             B b = new B();
  12.             Console.ReadKey();
  13.         }
  14.     }
  15.     class A
  16.     {
  17.         public A()
  18.         {
  19.             PrintFields();
  20.         }
  21.         public virtual void PrintFields() { }

  22.     }
  23.     class B:A
  24.     {
  25.         int x =1 ;
  26.         int y;
  27.         public B()
  28.         {
  29.             y=-1;
  30.             
  31.         }
  32.         public override void PrintFields()
  33.         {
  34.             Console.WriteLine(x+","+y);
  35.         }
  36.     }
  37. }
复制代码
输出结果是什么 ?为什么?
作者: 李根    时间: 2012-7-24 19:08
输出结果为1,0   
作者: 李根    时间: 2012-7-24 19:08
输出结果为1,0   




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2