21 lines
415 B
Java
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
|
|
*///:~
|