摘要: 阅读下面的代码,直接说出输出结果。class One{ private int x = 1; public virtual void Test() { Console.WriteLine("One:" + x); }}class Two : One{ private int x = 2; public new void Test() { Console.WriteLine... 阅读全文
posted @ 2008-06-20 00:59 橡树木棉狗 阅读(141) 评论(0) 推荐(0) 编辑