<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 495,comments - 227,trackbacks - 0
    http://blog.csdn.net/goldenfish1919/article/details/11780751

    原文:http://www.techempower.com/blog/2013/03/26/everything-about-java-8/
    1.接口增強
    (1)接口可以定義static方法
    java.util.Comparator:
    public static <T extends Comparable<? super T>> Comparator<T> naturalOrder() {
        return (Comparator<T>)Comparators.NaturalOrderComparator.INSTANCE;
    }
    (2)接口可以有default方法
    java.lang.Iterable:
    public default void forEach(Consumer<? super T> action) {
        Objects.requireNonNull(action);
        for (T t : this) {
            action.accept(t);
        }
    }
    default方法不能夠override:toString()、equals()、hashCode()方法。
    An interface cannot provide a default implementation for any of the methods of the Object class。
    接口不能夠提供Object類里面的方法的default實現。


    ps:接口看上去越來越像抽象類了。


    2.Functional接口
    一個接口只定義了一個abstract方法,這個接口就是“functional接口”,比如:java.lang.Runnable。
    “functional接口”中可以定義default方法
    新引入@FunctionalInterface來標記


    3.Lambdas表達式
    functional接口可以用Lambdas來實例化。
    (int x, int y) -> { return x + y; } :兩個入參,一個返回值
    (x, y) -> x + y:兩個入參,一個返回值,自動推斷類型
    x -> x * x:一個入參,一個返回值,自動推斷類型
    () -> x:沒有入參,一個返回值
    x -> { System.out.println(x); }:一個入參,沒有返回值,自動推斷類型
    String::valueOf static方法引用
    Object::toString  非static方法引用
    x::toString   Capturing method reference
    ArrayList::new  構造函數引用
    以下是等價的:
    方法引用         等價的Lambdas表達式
    String::valueOf x -> String.valueOf(x)
    Object::toString x -> x.toString()
    x::toString () -> x.toString()
    ArrayList::new () -> new ArrayList<>()


    ps:看到String::valueOf這種引用方式,不僅讓人想起了C++。


    如果Lambdas表達式和“functional接口”外形相似,二者就可以兼容:
    Comparator<String> c = (a, b) -> Integer.compare(a.length(),b.length());
    Comparator類的compare()方法接收兩個String的入參,返回一個int,跟右邊的Lambdas表達式兼容。
    所謂的外形相似就是說:入參、返回、checked異常。


    Runnable r = () -> { System.out.println("Running!"); }也是ok的。


    Capturing 與 non-capturing lambdas
    如果一個Lambdas表達式訪問了{}范圍以外的非static的變量或者對象,那就是個Capturing Lambdas表達式:
    int x = 5;
    return y -> x + y;
    Lambdas表達式captures了變量x,x必須得是“final等效”的:要么是final的,要么沒有被修改過。
    是否是Capturing Lambdas與性能有關,non-capturing的性能更高,non-capturing只需要被evaluated一次,只有一個instance,
    但是,每次遇到Capturing lambdas都會evaluated,類似于匿名內部類的實例化。


    3.新添加包:java.util.function
    這個包下面添加了很多functional接口:
    Function<T, R> - take a T as input, return an R as ouput
    Predicate<T> - take a T as input, return a boolean as output
    Consumer<T> - take a T as input, perform some action and don't return anything
    Supplier<T> - with nothing as input, return a T
    BinaryOperator<T> - take two T's as input, return one T as output, useful for "reduce" operations
    新添加了對應基本數據類型的功能函數類,比如:
    IntConsumer接收int,無返回,主要是為了性能的原因,避免自動拆裝箱。


    4.新添加包:java.util.stream
    java.util.stream這個包主要是為了support functional-style operations on streams of value。
    常見的獲取stream的方式是從Collection獲取:
    Stream<T> stream = collection.stream();
    一個stream就類似于是一個Iterator,只能遍歷一次,當然stream也可能是無窮的。
    stream可能是串行的也可能是并行的。
    stream能做什么呢?
    int sumOfWeights = blocks.stream().filter(b -> b.getColor() == RED)
                                      .mapToInt(b -> b.getWeight())
                                      .sum();
    以上使用了簡單類型的stream,sum()方法只有在簡單類型的stream上才有。
    stream提供了api用來轉換value,或者是對結果做一些操作,對stream的操作可以是“中間操作”也可能是“終止操作”。
    中間操作:會保持stream處于打開的狀態,并允許進一步的操作,上例中的filter()和mapToInt()就是中間操作,返回的還是當前的stream,允許更多的鏈式操作。
    終止操作:必須是stream上的最后一個操作,一旦被調用,stream就被消費掉,而且不能再使用了。


    一般來說,對stream的處理包含三個步驟:
    (1)從源處獲取stream
    (2)做一個或多個中間操作
    (3)做一個終止操作
    Stream可以是有狀態(Stateful)的。
    stream是可以短路操作(Short-circuiting)的,比如在處理無窮的stream的時候就需要提前停止。
    stream的api方法介紹:
    中間操作:
    filter:排除掉所有不滿足預定條件的元素
    map :使用Function對元素做一對一的轉換
    flatMap :把一個元素映射成0個或者多個元素
    distinct :根據equals方法,排除掉所有的重復元素,這是個stateful的操作。
    sorted :讓元素有序,stateful
    limit :讓后續的操作只能看到最多limit個元素,stateful并且short-circuiting
    substream :讓后續的操作只能看到stream的一部分。
    List<String> names = Arrays.asList("Alice", "Bob", "Charlie", "Dave");
    List<String> filteredNames = names.stream().filter(e -> e.length() >= 4).collect(Collectors.toList());
    for (String name : filteredNames) {
        System.out.println(name);  //Alice Charlie Dave
    }


    終止操作:
    forEach :對stream的每一個元素做一些處理
    toArray :把元素導出到數組里面
    reduce :使用BinaryOperator,把多個stream組合成一個
    collect :把元素導出到某個容器里面,比如:collection或者map
    min,max ,count ,
    anyMatch :是否至少一個匹配的元素,short-circuiting。
    allMatch :是否所有的元素都匹配,short-circuiting。
    noneMatch :是否所有的元素都不匹配,short-circuiting。
    findFirst :找到第一個匹配的元素,hort-circuiting。
    findAny :找到任何一個匹配的元素,hort-circuiting。


    中間操作是延遲(lazy)的。只有終止操作才會觸發對stream的處理。在終止操作開始的時候,無論有多少中間操作, 
    the elements are then consumed in (usually, but not quite always) a single pass.所有的元素都是進行一次性處理,
    有些Stateful操作(sorted(),distinct())可能會進行第二次處理。


    有專門針對基本類型的stream:IntStream,LongStream,DoubleStream
    List<String> strings = Arrays.asList("hello", "java", "");
    Object[] list = strings.stream()                  // Stream<String>
            .mapToInt(String::length)                 // IntStream
            .mapToLong(x -> Long.valueOf(x))          // LongStream
            .mapToDouble(x -> x * 2.0)                // DoubleStream
            .boxed()                                  // Stream<Double>
            .toArray();
    System.out.println(java.util.Arrays.toString(list));//[10.0, 8.0, 0.0]




    5.泛型類型推斷增強
    java7里面:
    foo(Utility.<Type>bar());
    Utility.<Type>foo().bar();
    但是java8里面:
    foo(Utility.bar());
    Utility.foo().bar();


    6.新引入java.time包
    LocalDateTime:日期+時間
    LocalDate:日期
    LocalTime:時間
    Instant:類似于java.util.Date
    DateTimeFormatter:與字符串的轉化
    與老的api轉化:
    Date.toInstant()
    Date.from(Instant)
    Calendar.toInstant()


    7.新添加了Collections API
    Iterable.forEach(Consumer)
    Iterator.forEachRemaining(Consumer)
    Collection.removeIf(Predicate)
    Collection.spliterator()
    Collection.stream()
    Collection.parallelStream()
    List.sort(Comparator)
    List.replaceAll(UnaryOperator)
    Map.forEach(BiConsumer)
    Map.replaceAll(BiFunction)
    Map.putIfAbsent(K, V)
    Map.remove(Object, Object)
    Map.replace(K, V, V)
    Map.replace(K, V)
    Map.computeIfAbsent(K, Function)
    Map.computeIfPresent(K, BiFunction)
    Map.compute(K, BiFunction)
    Map.merge(K, V, BiFunction)
    Map.getOrDefault(Object, V)


    List<String> strings = Arrays.asList("a", "b", "c");
    // Index strings by length:
    Map<Integer, List<String>> map = new HashMap<>();
    for (String s : strings) {
        map.computeIfAbsent(s.length(),key -> new ArrayList<String>()).add(s);
    }
    System.out.println(map);//{1=[a, b, c]}


    把stram里面的元素放到colection或者map里面:
    List<String> strings = Arrays.asList("a", "b", "c","hello","world");
    // Although in this case the stream API may be a better choice:
    Map<Integer, List<String>> map = strings.stream().collect(Collectors.groupingBy(String::length));
    System.out.println(map);//{1=[a, b, c], 5=[hello, world]}


    8.新添加了Concurrency API
    ConcurrentHashMap被完全重寫
    9.新添加了Concurrency API
    10.反射和注解增強
    注解可以加在泛型參數上: List<@Nullable String>
    11.Nashorn JavaScript Engine
    12.其他的一些api:
    Base64
    StringJoiner
    Objects.isNull(Object) 
    Objects.nonNull(Object) 
    ThreadLocal<List<String>> strings = ThreadLocal.withInital(ArrayList::new);
    people.sort(
        Comparator.comparing(Person::getLastName)
            .thenComparing(Person::getFirstName)
            .thenComparing(
                Person::getEmailAddress,
                Comparator.nullsLast()
                    .thenComparing(String.CASE_INSENSITIVE_ORDER)));


    總之一句話,加入了lambda表達式的java越來越像動態語言了,源碼也越來越看不懂了,估計得好好的適應一段時間了。
    posted on 2014-12-25 16:07 SIMONE 閱讀(310) 評論(0)  編輯  收藏 所屬分類: JAVA
    主站蜘蛛池模板: 无码AV动漫精品一区二区免费 | 午夜肉伦伦影院久久精品免费看国产一区二区三区 | 国产精品怡红院永久免费| 日本免费中文视频| 亚洲日本在线免费观看| 成人人观看的免费毛片| 国产精品久久久久影院免费| 亚洲无码视频在线| 亚洲短视频男人的影院| 亚洲伊人精品综合在合线| 日韩国产欧美亚洲v片| eeuss影院www天堂免费| 三上悠亚在线观看免费| 最近中文字幕完整版免费高清| 免费黄色小视频网站| 亚洲精品97久久中文字幕无码| 亚洲av丰满熟妇在线播放| 亚洲一区二区影视| 一级毛片在线完整免费观看| 十八禁无码免费网站| 午夜毛片不卡高清免费| 亚洲人成人77777网站| 亚洲人成网站色在线观看| 美女裸免费观看网站| 国产免费一区二区视频| 女人18毛片水真多免费看| 亚洲男人的天堂在线va拉文 | 大胆亚洲人体视频| 亚洲精品私拍国产福利在线| 亚洲第一街区偷拍街拍| 免费av一区二区三区| 日本高清免费aaaaa大片视频| 国产精品亚洲精品日韩已满| 亚洲fuli在线观看| 黄色三级三级免费看| **俄罗斯毛片免费| 久久久久无码专区亚洲av| 亚洲精品在线播放| 一区二区三区视频免费观看| 久久WWW免费人成一看片| 亚洲区小说区图片区|