类的继承关系,多态的体现,我的觉得题目还是有点欠缺

ylbtech-.NET Framework: 类的继承关系,多态的体现,我的觉得题目还是有点欠缺
 
1.A,案例
 
类的继承关系,多态的体现,我的觉得题目还是有点欠缺。  
 
1.B,解决方案
using System;

namespace ConsoleApplication1
{
    class People
    {
        int age = 8;

        public int Age {
            get { return age; }
        }
    }
    /// <summary>
    /// Student 类里写的有点多余
    /// </summary>
    class Student : People
    {
        int age = 9;

        public int Age
        {
            get { return age; }
        }       
    }
    class Program
    {
        static void Main(string[] args)
        {
            //父类引用子类对象(多态)
            People p = new Student();
            Console.WriteLine(string.Format("age={0}", p.Age));

            Student s = new Student();
            Console.WriteLine(string.Format("age={0}",s.Age));
        }
    }
}
1.C,运行结果
age=8
age=9
请按任意键继续. . .
warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
posted on 2013-03-23 22:39  ylbtech  阅读(215)  评论(0编辑  收藏  举报