会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
spring学习笔记
java例程练习(接口interface)
interface Valuable { public double getMoney(); } interface Protectable { public void beProtected(); } interface A extends Protectable { void m(); } abstract class Animal { private String name; abstract void enjoy(); public void setName(String name) { this.name = name; } public String getName() { return name; } } class GoldMonkey extends Animal implements Valuable, Protectable { public double getMoney() { return 10000; } public void beProtected() { System.out.println("Live in the room"); } public void enjoy() { } public void test () { Valuable v = new GoldMonkey(); v.getMoney(); Protectable p = (Protectable) v; p.beProtected(); } } class Hen implements A { public void m(){} public void beProtected(){} }
posted on
2012-04-22 18:21
spring学习笔记
阅读(
170
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
联系
订阅
管理
公告