/* null を代入する例 */ class Foo { public static void main (String[] args) { String s = "Hello, world"; System.out.println(s); s = null; System.out.println(s); } }