20 lines
374 B
Java
20 lines
374 B
Java
|
//: strings/Immutable.java
|
||
|
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
|
||
|
*///:~
|