如何在 Java 中在接口内编写类?


Java 允许在接口中定义类。如果接口的方法接受类作为参数,并且该类未使用在其他地方,则这种情况下我们可以在接口中定义类。

示例

在以下示例中,我们有一个名为 CarRentalServices 的接口,并且此接口有两个方法,它们接受 Car 类的对象作为参数。在此接口中,我们有类 Car

 实时演示

interface CarRentalServices {
   void lendCar(Car c);
   void collectCar(Car c);
   public class Car{
      int carId;
      String carModel;
      int issueDate;
      int returnDate;
   }
}
public class InterfaceSample implements CarRentalServices {
   public void lendCar(Car c) {
      System.out.println("Car Issued");
   }
   public void collectCar(Car c) {
      System.out.println("Car Retrieved");
   }
   public static void main(String args[]){
      InterfaceSample obj = new InterfaceSample();
      obj.lendCar(new CarRentalServices.Car());
      obj.collectCar(new CarRentalServices.Car());
   }
}

输出

Car Issued
Car Retrieved

更新于:29-Jun-2020

294 查看

启动您的 事业

完成课程获得认证

开始学习
广告