|
Java example source code file (EffectivelyFinal01.java)
The EffectivelyFinal01.java Java example source code
/*
* @test /nodynamiccopyright/
* @bug 8003280
* @summary Add lambda tests
* effectively final check fails on method parameter
* @compile/fail/ref=EffectivelyFinal01.out -XDrawDiagnostics EffectivelyFinal01.java
*/
class EffectivelyFinal01 {
interface SAM {
Integer m(Integer i);
}
void test(Integer nefPar) {
SAM s = (Integer h) -> { Integer k = 0; return k + h + nefPar; };
nefPar++; //non-effectively final
}
}
Other Java examples (source code examples)Here is a short list of links related to this Java EffectivelyFinal01.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.