|
Java example source code file (Unchecked.java)
The Unchecked.java Java example source code
/**
* @test /nodynamiccopyright/
* @bug 4986256
* @compile/ref=Unchecked.noLint.out -XDrawDiagnostics Unchecked.java
* @compile/ref=Unchecked.lintUnchecked.out -Xlint:unchecked -XDrawDiagnostics Unchecked.java
* @compile/ref=Unchecked.lintAll.out -Xlint:all,-path -XDrawDiagnostics Unchecked.java
*/
import java.util.ArrayList;
import java.util.List;
// control: this class should generate warnings
class Unchecked
{
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
// tests: the warnings that would otherwise be generated should all be suppressed
@SuppressWarnings("unchecked")
class Unchecked2
{
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
class Unchecked3
{
@SuppressWarnings("unchecked")
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
class Unchecked4
{
void m() {
@SuppressWarnings("unchecked")
class Inner {
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
}
}
// this class should produce warnings because @SuppressWarnings should not be inherited
class Unchecked5 extends Unchecked2
{
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
Other Java examples (source code examples)Here is a short list of links related to this Java Unchecked.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.