认证题 2-11

Posted ~小魔女~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了认证题 2-11相关的知识,希望对你有一定的参考价值。

   实现多态

1.Animal.cs(类文件)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
class Animal
{
private bool m_sex;
private string m_sound;

public bool Sex
{
get
{
return m_sex;
}

set
{
m_sex = value;
}
}

public string Sound
{
get
{
return m_sound;
}

set
{
m_sound = value;
}
}

public Animal()
{
m_sex = false;
Sound = "Howl...";
}
public virtual string Rore()
{
return Sound;
}
}
class Dog : Animal
{
public Dog()
{
Sex = true;
Sound = "Wow...";
}
public override string Rore()
{

return "Dog:" + Sound;
}
}
class Cat : Animal
{
public Cat()
{
Sound = "Miaow...";
}
public override string Rore()
{

return "Cat:" + Sound;
}
}
class Cow : Animal
{
public Cow()
{
Sound = "Moo...";
}
public override string Rore()
{

return "Cow:" + Sound;
}
}

}

2.实例化

static void Main(string[] args)
{
string s1,s2,s3;
Animal animal = new Cow();
s1=animal.Rore();
Console.WriteLine(s1);
Animal dog = new Dog();
s2=dog.Rore();
Console.WriteLine(s2);
Animal cat = new Cat();
s3=cat.Rore();
Console.WriteLine(s3);
}

3.结果

以上是关于认证题 2-11的主要内容,如果未能解决你的问题,请参考以下文章

2021认证杯第二阶段 B题 思路

2021认证杯第二阶段 C题 思路

2021认证杯第二阶段 D题 思路

Mysql 8.0 OCP认证考试原题题库整理-第4题(CUUG内部资料)

2021认证杯第二阶段 A 题 医学图像的配准 思路

2021 认证杯数学建模 第二阶段 比赛通知-赛题思路