| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 897 人关注过本帖
标题:抽象类怎么实现接口定义的部分方法呀?
取消只看楼主 加入收藏
baby69yy2000
Rank: 1
等 级:新手上路
帖 子:67
专家分:0
注 册:2007-4-5
收藏
 问题点数:0 回复次数:2 
抽象类怎么实现接口定义的部分方法呀?

interface Runner{
int ID = 1;
void run();
}

interface Animal extends Runner{
void breathe();
}

abstract class LandAnimal implements Animal{
public void breathe(){
System.out.println("LandAnimal");
}
}

public class TestInterface_01 {
public static void main(String[] args) {
LandAnimal L = new LandAnimal();
L.breathe();
}
}
抽象类怎么实现接口定义的部分方法呀?
我这个编译不能通过呢?那错了呢?

[此贴子已经被作者于2007-10-26 0:07:47编辑过]

搜索更多相关主题的帖子: 接口 定义 
2007-10-26 00:07
baby69yy2000
Rank: 1
等 级:新手上路
帖 子:67
专家分:0
注 册:2007-4-5
收藏
得分:0 
谢谢,千里冰封大兄弟!
还有个问题呀
为什么我的"interface Runner" 前面不能加"public"呢?一加就出错呢?
我看有的书上,interface前面加public了呀

2007-10-26 13:38
baby69yy2000
Rank: 1
等 级:新手上路
帖 子:67
专家分:0
注 册:2007-4-5
收藏
得分:0 

interface Runner{
int ID = 1;
void run();

}

interface Animal extends Runner{
void swim();
}

abstract class LandAnimal implements Animal{
public abstract void run();
//public abstract void swim();

}
class Cat extends LandAnimal{
public void run() {System.out.println("陆地动物会跑");}
public void swim() {System.out.println("陆地动物会游泳的少");}
}

public class TestInterface_01 {
public static void main(String[] args) {
LandAnimal c = new Cat();
c.run();
}
}
这样用"abstract"应该对了吧.

[此贴子已经被作者于2007-10-26 14:48:23编辑过]


2007-10-26 14:19
快速回复:抽象类怎么实现接口定义的部分方法呀?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016599 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved