/* 参照先を変える例 */ class Foo { public static void main (String[] args) { String s = "Hello, world"; System.out.println(s); s = "Good Bye"; System.out.println(s); } }