OnJava8-Examples/strings/Immutable.java
2015-05-29 14:18:51 -07:00

21 lines
415 B
Java

//: strings/Immutable.java
// ©2015 MindView LLC: see Copyright.txt
import static net.mindview.util.Print.*;
public class Immutable {
public static String upcase(String s) {
return s.toUpperCase();
}
public static void main(String[] args) {
String q = "howdy";
print(q); // howdy
String qq = upcase(q);
print(qq); // HOWDY
print(q); // howdy
}
} /* Output:
howdy
HOWDY
howdy
*///:~