编写Java应用程序,定义Animal类。此类中有动物的属性:名称 name,腿的数量legs,统计动物的数量 count;方法:设置动物腿数量的方法 void setLegs(),获得腿数量的方法getLegs(),设置动 物名称的方法setKind(),获得动物名称的方法getKind(),获得动物数量的方法 getCount()。定义Fish类,是Animal类的子类,统计鱼的数量 count,获得鱼数量的方法getCount()。定义Tiger类,是Animal类的子类,统计老虎的数量 count,获得老虎数量的方法getCount()。定义SouthEastTiger类,是Tiger类的子类,统计老虎的数量count,获得老虎数量的方法 getCount()。