C#第二单元 11题
2021-05-13 17:27
标签:anim virtual sys err http ext col 技术分享 src using System; namespace Txst_2._1 C#第二单元 11题 标签:anim virtual sys err http ext col 技术分享 src 原文地址:http://www.cnblogs.com/aa1111/p/7538441.html
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
{
class Animal
{
private Boolean m_sex;
private string m_sound;
public Animal()
{
m_sex = false;
m_sound = "Howl...";
}
public bool Sex
{
get { return m_sex; }
set { m_sex = value; }
}
public string Sound
{
get { return m_sound; }
set { m_sound = value; }
}
public virtual string Roar()
{
return "Animal" + m_sound;
}
}
class Dog : Animal
{
public Dog()
{
Sex = true;
Sound = "Wow...";
}
public override string Roar()
{
return "Dog:" + Sound;
}
}
class Cat : Animal
{
public Cat()
{
Sound = "Miaow...";
}
public override string Roar()
{
return "Cat:" + Sound;
}
}
class Cow : Animal
{
public Cow()
{
Sound = "Moo...";
}
public override string Roar()
{
return "Cow:" + Sound;
}
}
class Program
{
static void Main(string[] args)
{
Animal animal;
animal = new Dog();
Console.WriteLine(animal.Roar());
Console.WriteLine();
animal = new Cat();
Console.WriteLine(animal.Roar());
Console.WriteLine();
animal = new Cow();
Console.WriteLine(animal.Roar());
Console.WriteLine();
Console.Read();
}
}
}
上一篇:C#R认证第二单元第一题
下一篇:C#认证第一章1 题 11题