>>313

以下のコードの場合、@はAとして解釈されます。
なので、@の様にコードを記述してもStringオブジェクトは生成されます。

@
String str = "xyz";

A
String str = new String(new char[]{'x', 'y', 'z'});