A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 马林康 中级黑马   /  2012-7-24 18:22  /  1236 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  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. }
复制代码
输出结果是什么 ?为什么?

评分

参与人数 1技术分 +1 收起 理由
宋天琪 + 1

查看全部评分

2 个回复

倒序浏览
输出结果为1,0   
回复 使用道具 举报
输出结果为1,0   

评分

参与人数 1技术分 +1 收起 理由
宋天琪 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马