加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Animal.cs 534 Bytes
一键复制 编辑 原始数据 按行查看 历史
章超群 提交于 2020-05-18 14:53 . 方法定义
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp001
{
public abstract class Animal
{
public void Dance()
{
Console.WriteLine("奔跑不如跳舞,跳舞");
}
public void Age()
{
Console.WriteLine("你肯定没我快长大");
}
}
public class Dog : Animal
{
public void Dark()
{
Console.WriteLine("有一说一,你怕不知道什么是对牛弹琴");
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化