package com.inmind.duotai08.downcast; public abstract class Animal { String name; int age; //吃的行为 public abstract void eat(); }