码迷,mamicode.com
首页 > 编程语言 > 详细

深入了解java的一维数组

时间:2015-06-14 16:53:40      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:instanceof

public class ArrayTest{
    public static void main(String[] args)
    {
        Animal[] a=new Animal[3];
        Dog d1=new Dog();
        Dog d2=new Dog();
        Cat c1=new Cat();
        Cat c2=new Cat();
        a[0]=d1;
        a[1]=d2;
        a[2]=c1;
        a[3]=c2;
     //需求:遍历数组,取出每一个对象,如果是Dog,执行eat方法,如果是Cat,执行move方法。
     for(int i=0;i<a.length;i++)
     {
         Animal an = a[i];
         if( an instanceof Dog){
             Dog d = (Dog)an;
             d.eat();
         }else if(an instanceof Cat){
             Cat c=(Cat)an;
             c.move();
         }
          
     }
    }
    
}

//定义了动物类,狗类,猫类
class Animal{

}
class Dog extends Animal{
    public void eat(){
        System.out.println("Dog eat!");
    }
}
class Cat extends Animal{
    public void move(){
        System.out.println("Dog move!");
    }
}


本文出自 “gaogaozi” 博客,请务必保留此出处http://hangtiangazi.blog.51cto.com/8584103/1661766

深入了解java的一维数组

标签:instanceof

原文地址:http://hangtiangazi.blog.51cto.com/8584103/1661766

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!