当前位置: 代码迷 >> Java相关 >> Done接口应用实例 ,应该将类和接口放在哪里(package class)?
  详细解决方案

Done接口应用实例 ,应该将类和接口放在哪里(package class)?

热度:838   发布时间:2007-10-01 10:34:31.0
Done接口应用实例 ,应该将类和接口放在哪里(package class)?

//接口应用实例 ,
//应该将类和接口放在哪里?谢谢~~
interface StartStop{//定义StartStop接口
void start();
void stop();
}

class Conference implements StartStop{//会议实现StartStop接口
public void start(){
System.out.println("Start the conference!");
}
public void start(){
System.out.println("Start the conference!");
}
}

class Car implements StartStop{//汽车实现StartStop接口
public void start(){
System.out.println("Start the car");
}
public void start(){
System.out.println("Start the car");
}
}

public class TestInterface{
public static viod main(String[] args){
StartStop[] ss={new Conference(),new Car()};
for(int i=0;i<ss.length;i++){
ss[i].start();
ss[i].stop();
}
}
}

[此贴子已经被作者于2007-11-18 10:15:07编辑过]

搜索更多相关的解决方案: package  Done  接口  实例  class  

----------------解决方案--------------------------------------------------------

呵呵,你到底在问什么?


----------------解决方案--------------------------------------------------------
回复:(george_vcool)呵呵,你到底在问什么?

不好意思,这个问题你应该看懂了吧?把程序的几个部分放在几个(pacgage,class)中,才能实现功能?
我不知怎么把他们分配一下,放在一个类中不行


----------------解决方案--------------------------------------------------------
可以实现!!
不过实现接口有问题!!!
两个类中都没有实现stop方法,而是用了两个start方法
把第二个start方法改成stop就行了!!!
我运行了,可以实现
----------------解决方案--------------------------------------------------------
类实现接口必须实现其所有的抽象方法!
----------------解决方案--------------------------------------------------------

明白了,谢谢~~


----------------解决方案--------------------------------------------------------

package javaSunday;

//接口应用实例 ,
//应该将类和接口放在哪里?谢谢~~
interface StartStop{//定义StartStop接口
void start1();
void stop1();
}

class Conference implements StartStop{
//会议实现StartStop接口
public void start1(){
System.out.println("start the conference!");
}

public void stop1(){
System.out.println("stop the conference!");
}
}


class Car implements StartStop{//汽车实现start1Stop接口
public void start1(){
System.out.println("start the car!");
}
public void stop1(){
System.out.println("stop the car!");
}
}

public class TestInterface{
public static void main(String[] args){
StartStop[] ss={new Conference(),(StartStop)new Car()};
for(int i=0;i<ss.length;i++){
ss[i].start1();
ss[i].stop1();
}
}
}


----------------解决方案--------------------------------------------------------
  相关解决方案