How many objects will be created for the following code?
String temp = "a" + "b" + "c"
My understanding: a,b and c are string literals and will be stored on the string pool (so no new object created). Then while appending using "+" operator it uses StringBuffer internally so 1 object will be created which will hold "abc"(StringBuffer). And it will be returned in a new String object (Whose value will be "abc").
-> So as per me total 2 objects will be created during this operation.(one String and one StringBuffer).
-> Also String "abc" will NOT be present in String Pool.
Am I wrong?
From this test code:
You get this bytecode:
With this constant pool:
So you were incorrect. One
String
was created --"abc"
-- and placed into theString
pool at runtime.The compiler here performed constant folding and simplified the compile-time constant expression
"a" + "b" + "c"
to"abc"
. You can see this if you compile with the-XD-printflat
flag, which shows the actual source that the compiler compiles to bytecode:If you want to see actual
String
concatenation, you'll have to work with operands that aren't compile-time constants, such as variables:Gets compiled to: