|
Java example source code file (RepeatedStringCaseLabels2.java)
The RepeatedStringCaseLabels2.java Java example source code/* * @test /nodynamiccopyright/ * @bug 6827009 * @summary Check for repeated string case labels. * @compile/fail -source 6 RepeatedStringCaseLabels2.java * @compile/fail/ref=RSCL2.out -XDrawDiagnostics RepeatedStringCaseLabels2.java */ class RepeatedStringCaseLabels2 { String m(String s) { final String constant = "Hello" + " " + "World"; switch(s) { case "Hello World": return(s); case constant: return (s + s); } } } Other Java examples (source code examples)Here is a short list of links related to this Java RepeatedStringCaseLabels2.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.