Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java ではString S=new String(" ");、3 つの異なるオブジェクトが作成されます。1 つは文字列プール領域に、もう 1 つは非文字列プール領域に作成されます。3 番目のオブジェクトが作成された方法と場所を教えてください。
String S=new String(" ");
Java String では S=new String(" "); 3つの異なるオブジェクトを作成します
いいえ、そうではありません。話していた 2 つだけを作成します (文字列 " " が既にインターン プールにある場合は、新しいものを 1 つだけ作成します)。