|
Java example source code file (LambdaConv09.java)
The LambdaConv09.java Java example source code
/*
* @test /nodynamiccopyright/
* @bug 8003280
* @summary Add lambda tests
* check that SAM conversion handles Object members correctly
* @author Alex Buckley
* @author Maurizio Cimadamore
* @compile/fail/ref=LambdaConv09.out -XDrawDiagnostics LambdaConv09.java
*/
class LambdaConv09 {
// Not a SAM type; not enough abstract methods
interface Foo1 {}
// SAM type; Foo has no abstract methods
interface Foo2 { boolean equals(Object object); }
// Not a SAM type; Foo still has no abstract methods
interface Foo3 extends Foo2 { public abstract String toString(); }
// SAM type; Bar has one abstract non-Object method
interface Foo4<T> extends Foo2 { int compare(T o1, T o2); }
// Not a SAM type; still no valid abstract methods
interface Foo5 {
boolean equals(Object object);
String toString();
}
// SAM type; Foo6 has one abstract non-Object method
interface Foo6<T> {
boolean equals(Object obj);
int compare(T o1, T o2);
}
// SAM type; Foo6 has one abstract non-Object method
interface Foo7<T> extends Foo2, Foo6
Other Java examples (source code examples)Here is a short list of links related to this Java LambdaConv09.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.