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

《Java入门第二季》第五章 阶段练习

时间:2017-03-12 01:11:10      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:ble   入门   ...   test   xtend   接口   hello   nbsp   cti   

/**
 *         ┏┓   ┏┓
 *        ┏┛┻━━━┛┻┓
 *        ┃       ┃  
 *        ┃   ━   ┃
 *        ┃ >   < ┃
 *        ┃       ┃
 *        ┃... ⌒ ... ┃
 *        ┃       ┃
 *        ┗━┓   ┏━┛
 *          ┃   ┃ Code is far away from bug with the animal protecting          
 *          ┃   ┃ 神兽保佑,代码无bug
 *          ┃   ┃           
 *          ┃   ┃       
 *          ┃   ┃
 *          ┃   ┃           
 *          ┃   ┗━━━┓
 *          ┃       ┣┓
 *          ┃       ┏┛
 *          ┗┓┓┏━┳┓┏┛
 *           ┃┫┫ ┃┫┫
 *           ┗┻┛ ┗┻┛
 */
public class Test {
    public static void main(String[] args) {
        Person p1 = new Chinese();
        Person p2 = new American();
        p1.say();
        p2.say();
    }
}
/* Output:
你好
Hello
 */
public abstract class Person {
    abstract void say();
}
public class Chinese extends Person {
    public void say() {
        System.out.println("你好");
    }
}
public class American extends Person {
    public void say() {
        System.out.println("Hello");
    }
}

 也可以实现一个Sayable接口。

《Java入门第二季》第五章 阶段练习

标签:ble   入门   ...   test   xtend   接口   hello   nbsp   cti   

原文地址:http://www.cnblogs.com/xkxf/p/6536666.html

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