码迷,mamicode.com
首页 > 其他好文 > 详细

接口的默认方法

时间:2017-07-25 22:50:01      阅读:496      评论:0      收藏:0      [点我收藏+]

标签:关键字   添加   imp   super   接口   允许   veh   test   int()   

Java 8允许我们给接口添加一个非抽象的方法实现,只需要使用 default关键字即可,这个特征又叫做扩展方法。这种能力是向后兼容的,以便旧接口可以使用Java 8的lambda表达式功能。

例如,List和Collection没有foreach方法

public interface vehicle {
   default void print(){
      System.out.println("I am a vehicle!");
   }
}

 

 静态默认方法

public interface vehicle {
   default void print(){
      System.out.println("I am a vehicle!");
   }
    
   static void blowHorn(){
      System.out.println("Blowing horn!!!");
   }
}
public class Java8Tester {
   public static void main(String args[]){
      Vehicle vehicle = new Car();
      vehicle.print();
   }
}

interface Vehicle {
   default void print(){
      System.out.println("I am a vehicle!");
   }
    
   static void blowHorn(){
      System.out.println("Blowing horn!!!");
   }
}

interface FourWheeler {
   default void print(){
      System.out.println("I am a four wheeler!");
   }
}

class Car implements Vehicle, FourWheeler {
   public void print(){
      Vehicle.super.print();
      FourWheeler.super.print();
      Vehicle.blowHorn();
      System.out.println("I am a car!");
   }
}

 

接口的默认方法

标签:关键字   添加   imp   super   接口   允许   veh   test   int()   

原文地址:http://www.cnblogs.com/april-chen/p/7236419.html

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