alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (TargetType22.java)

This example Java source code file (TargetType22.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

sam0, sam1, sam2, sam3, samx, targettype22

The TargetType22.java Java example source code

/*
 * @test /nodynamiccopyright/
 * @bug 8003280
 * @summary Add lambda tests
 *  check that candidates with incompatible SAM descriptor args length
            are removed from the set of applicable methods
 * @compile/fail/ref=TargetType22.out -Xlint:unchecked -XDrawDiagnostics TargetType22.java
 */

class TargetType22 {

    interface Sam0 {
        void m();
    }

    interface Sam1<A> {
        void m(A a);
    }

    interface Sam2<A> {
        void m(A a1, A a2);
    }

    interface Sam3<A> {
        void m(A a1, A a2, A a3);
    }

    interface SamX<A> {
        void m(A... as);
    }

    void call(Sam0 s) { }
    void call(Sam1<String> s) { }
    void call(Sam2<String> s) { }
    void call(Sam3<String> s) { }
    void call(SamX<String> s) { }

    void test() {
        call(() -> { });
        call(a1 -> { }); //ambiguous - both call(Sam1) and call(SamX) match
        call((a1, a2) -> { });
        call((a1, a2, a3) -> { });
    }
}

Other Java examples (source code examples)

Here is a short list of links related to this Java TargetType22.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.