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

Java Head First & 多态

时间:2018-01-18 14:10:48      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:xtend   alt   style   head   ret   str   end   col   .com   

技术分享图片
 
技术分享图片
package com.cwcec.tag;

class Fruit
{    
}

class Apple extends Fruit{}

class Animal
{
    public Fruit eat(Fruit fruit)
    {
        System.out.println("Animal eat...");
        return fruit;
    }
    
}

class Dog extends Animal
{

    public Fruit eat(Apple apple) {
        System.out.println("Dog eat...");
        return apple;
    }
    
}

public class Single
{

    public static void main(String[] args) {
        
        Fruit fruit = new Fruit();
        Apple apple = new Apple();
        Animal animal = new Dog();
        animal.eat(apple);    
    }
}

技术分享图片

 

Java Head First & 多态

标签:xtend   alt   style   head   ret   str   end   col   .com   

原文地址:https://www.cnblogs.com/xiarongjin/p/8309783.html

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