using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace m1w4d1_abstract { //抽象函数.抽象类 //多态实现 写一个动物的 抽象类,写两个子类狗狗叫,猫猫叫 //Animal类Cry方法里写具体实现的问题:写什么都不合适 //实例化 一个 animal的对象 他指代现实中 哪种对象 无