/* 原始型と参照型の違い.このプログラムを実行しても 違いは分からない(何も起こらない)ので, 本文の説明を参照してください. */ class Foo { public static void main (String[] args) { int n = 10; String s = "Hello, world"; } }