An interview question: What's the number of String objects being created?Is an array a primitive type or an object (or something else entirely)?How do I create a Java string from the contents of a file?Creating multiline strings in JavaScriptCount the number of occurrences of a character in a string in JavascriptHow do I check if a string contains another string in Objective-C?Convert JS object to JSON stringConverting an object to a stringPythonic way to create a long multi-line stringWhy is String immutable in Java?Where is the new Object of String created when we concat using + operator

Understanding Parallelize methods

I don't have the theoretical background in my PhD topic. I can't justify getting the degree

Is it possible to perform a regression where you have an unknown / unknowable feature variable?

How to gently end involvement with an online community?

Does travel insurance for short flight delays exist?

Is "The life is beautiful" incorrect or just very non-idiomatic?

Prove your innocence

“T” in subscript in formulas

Converting a set into a string

Pythagorean triple with hypotenuse a power of 2

Architectural feasibility of a tiered circular stone keep

Immutable builder and updater

Is there any practical application for performing a double Fourier transform? ...or an inverse Fourier transform on a time-domain input?

Does norwegian.no airline overbook flights?

Examples of topos that are not ordinary spaces

Why did Khan ask Admiral James T. Kirk about Project Genesis?

I can see my two means are different. What information can a t test add?

Is using a hyperlink to close a modal a poor design decision?

How to determine car loan length as a function of how long I plan to keep a car

How to respectfully refuse to assist co-workers with IT issues?

Handling Disruptive Student on the Autistic Spectrum

Is “I am getting married with my sister” ambiguous?

Thank God it's Friday, tomorrow is THE weekend. Why the definite article?

Is gzip atomic?



An interview question: What's the number of String objects being created?


Is an array a primitive type or an object (or something else entirely)?How do I create a Java string from the contents of a file?Creating multiline strings in JavaScriptCount the number of occurrences of a character in a string in JavascriptHow do I check if a string contains another string in Objective-C?Convert JS object to JSON stringConverting an object to a stringPythonic way to create a long multi-line stringWhy is String immutable in Java?Where is the new Object of String created when we concat using + operator






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








6















I was asked in an interview about the number of objects that will be created on the given problem:



String str1 = "First";
String str2 = "Second";
String str3 = "Third";
String str4 = str1 + str2 + str3;


So I am not sure that the answer I gave was correct or not.



I answered that there would be 6 objects created in the string pool.



3 would be for all three variables.

1 would be for str1 + str2 (let's say str).

1 would be for str2 + str3.

1 would be for the str + str3 (str = str1 + str2).



Please help me out on this confusion.










share|improve this question









New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2





    Why would str2 + str3 be one of the objects?

    – Jacob G.
    8 hours ago






  • 3





    I am not entirely sure whether it is defined in the JLS, but when concatenating Strings, the compiler normally generates a StringBuilder to concatenate the Strings. I am not entirely sure how the StringBuilder internally handles the concatenation, but I would say that at least five Objects are created: one for str1 to str3, one StringBuilder and the final String for String4.

    – Turing85
    8 hours ago











  • Update: The JLS actually defines that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." In other words: without further information, the question cannot be definitively answered.

    – Turing85
    8 hours ago











  • Nothing against you, but I hate questions like that. What is the deeper meaning of such questions? Especially in an interview? What skills does the interviewer want to find out?

    – RedCam
    8 hours ago











  • if the first 3 variables were defined final I would say no object is being created (at that code segment)

    – Carlos Heuberger
    7 hours ago

















6















I was asked in an interview about the number of objects that will be created on the given problem:



String str1 = "First";
String str2 = "Second";
String str3 = "Third";
String str4 = str1 + str2 + str3;


So I am not sure that the answer I gave was correct or not.



I answered that there would be 6 objects created in the string pool.



3 would be for all three variables.

1 would be for str1 + str2 (let's say str).

1 would be for str2 + str3.

1 would be for the str + str3 (str = str1 + str2).



Please help me out on this confusion.










share|improve this question









New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2





    Why would str2 + str3 be one of the objects?

    – Jacob G.
    8 hours ago






  • 3





    I am not entirely sure whether it is defined in the JLS, but when concatenating Strings, the compiler normally generates a StringBuilder to concatenate the Strings. I am not entirely sure how the StringBuilder internally handles the concatenation, but I would say that at least five Objects are created: one for str1 to str3, one StringBuilder and the final String for String4.

    – Turing85
    8 hours ago











  • Update: The JLS actually defines that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." In other words: without further information, the question cannot be definitively answered.

    – Turing85
    8 hours ago











  • Nothing against you, but I hate questions like that. What is the deeper meaning of such questions? Especially in an interview? What skills does the interviewer want to find out?

    – RedCam
    8 hours ago











  • if the first 3 variables were defined final I would say no object is being created (at that code segment)

    – Carlos Heuberger
    7 hours ago













6












6








6








I was asked in an interview about the number of objects that will be created on the given problem:



String str1 = "First";
String str2 = "Second";
String str3 = "Third";
String str4 = str1 + str2 + str3;


So I am not sure that the answer I gave was correct or not.



I answered that there would be 6 objects created in the string pool.



3 would be for all three variables.

1 would be for str1 + str2 (let's say str).

1 would be for str2 + str3.

1 would be for the str + str3 (str = str1 + str2).



Please help me out on this confusion.










share|improve this question









New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I was asked in an interview about the number of objects that will be created on the given problem:



String str1 = "First";
String str2 = "Second";
String str3 = "Third";
String str4 = str1 + str2 + str3;


So I am not sure that the answer I gave was correct or not.



I answered that there would be 6 objects created in the string pool.



3 would be for all three variables.

1 would be for str1 + str2 (let's say str).

1 would be for str2 + str3.

1 would be for the str + str3 (str = str1 + str2).



Please help me out on this confusion.







java string string-concatenation string-pool string-building






share|improve this question









New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited 7 hours ago









Andrew Tobilko

32.9k10 gold badges53 silver badges102 bronze badges




32.9k10 gold badges53 silver badges102 bronze badges






New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked 8 hours ago









bhpshbhpsh

373 bronze badges




373 bronze badges




New contributor



bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




bhpsh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • 2





    Why would str2 + str3 be one of the objects?

    – Jacob G.
    8 hours ago






  • 3





    I am not entirely sure whether it is defined in the JLS, but when concatenating Strings, the compiler normally generates a StringBuilder to concatenate the Strings. I am not entirely sure how the StringBuilder internally handles the concatenation, but I would say that at least five Objects are created: one for str1 to str3, one StringBuilder and the final String for String4.

    – Turing85
    8 hours ago











  • Update: The JLS actually defines that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." In other words: without further information, the question cannot be definitively answered.

    – Turing85
    8 hours ago











  • Nothing against you, but I hate questions like that. What is the deeper meaning of such questions? Especially in an interview? What skills does the interviewer want to find out?

    – RedCam
    8 hours ago











  • if the first 3 variables were defined final I would say no object is being created (at that code segment)

    – Carlos Heuberger
    7 hours ago












  • 2





    Why would str2 + str3 be one of the objects?

    – Jacob G.
    8 hours ago






  • 3





    I am not entirely sure whether it is defined in the JLS, but when concatenating Strings, the compiler normally generates a StringBuilder to concatenate the Strings. I am not entirely sure how the StringBuilder internally handles the concatenation, but I would say that at least five Objects are created: one for str1 to str3, one StringBuilder and the final String for String4.

    – Turing85
    8 hours ago











  • Update: The JLS actually defines that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." In other words: without further information, the question cannot be definitively answered.

    – Turing85
    8 hours ago











  • Nothing against you, but I hate questions like that. What is the deeper meaning of such questions? Especially in an interview? What skills does the interviewer want to find out?

    – RedCam
    8 hours ago











  • if the first 3 variables were defined final I would say no object is being created (at that code segment)

    – Carlos Heuberger
    7 hours ago







2




2





Why would str2 + str3 be one of the objects?

– Jacob G.
8 hours ago





Why would str2 + str3 be one of the objects?

– Jacob G.
8 hours ago




3




3





I am not entirely sure whether it is defined in the JLS, but when concatenating Strings, the compiler normally generates a StringBuilder to concatenate the Strings. I am not entirely sure how the StringBuilder internally handles the concatenation, but I would say that at least five Objects are created: one for str1 to str3, one StringBuilder and the final String for String4.

– Turing85
8 hours ago





I am not entirely sure whether it is defined in the JLS, but when concatenating Strings, the compiler normally generates a StringBuilder to concatenate the Strings. I am not entirely sure how the StringBuilder internally handles the concatenation, but I would say that at least five Objects are created: one for str1 to str3, one StringBuilder and the final String for String4.

– Turing85
8 hours ago













Update: The JLS actually defines that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." In other words: without further information, the question cannot be definitively answered.

– Turing85
8 hours ago





Update: The JLS actually defines that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." In other words: without further information, the question cannot be definitively answered.

– Turing85
8 hours ago













Nothing against you, but I hate questions like that. What is the deeper meaning of such questions? Especially in an interview? What skills does the interviewer want to find out?

– RedCam
8 hours ago





Nothing against you, but I hate questions like that. What is the deeper meaning of such questions? Especially in an interview? What skills does the interviewer want to find out?

– RedCam
8 hours ago













if the first 3 variables were defined final I would say no object is being created (at that code segment)

– Carlos Heuberger
7 hours ago





if the first 3 variables were defined final I would say no object is being created (at that code segment)

– Carlos Heuberger
7 hours ago












5 Answers
5






active

oldest

votes


















9















With the given information, the question cannot be definitely answered. As is stated in the JLS, §15.18.1:




... To increase the performance of repeated string concatenation, a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression.




This means that the answer depends at least on the concrete Java compiler used.



I think the best we can do is give an interval as answer:



  • a smart compiler may be able to infer that str1 to str3 are never used and fold the concatenation during compilation, such that only one String-object is created (the one referenced by str4)

  • The maximum sensible number of Strings created should be 5: one each for str1 to str3, one for tmp = str1 + str2 and one for str4 = tmp + str3.

So... my answer would be "something between one to five String-objects". As to the total number of objects created just for this operation... I do not know. This may also depend how exactly e.g. StringBuffer is implemented.



As an aside: I wonder what the reason behind asking such questions is. Normally, one does not need to care about those details.






share|improve this answer






















  • 3





    "I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

    – Andrew Tobilko
    7 hours ago



















3















Java 8 will likely create 5 objects:



  • 3 for the 3 variables

  • 1 StringBuilder

  • 1 for the concatenated String

With Java 9 things changed though and String concatenation does not use StringBuilder anymore.






share|improve this answer




















  • 3





    Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

    – Andy Thomas
    8 hours ago







  • 1





    stackoverflow.com/questions/12806739/…

    – 17slim
    8 hours ago






  • 4





    @3limin4t0r "char[] is a primitive value" - Nope.

    – Turing85
    8 hours ago







  • 2





    @AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

    – Puce
    8 hours ago











  • That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

    – 17slim
    8 hours ago


















2















It should be 5:



  • three for the three literals (assigned to str1, str2 and str3)


  • one for str1 + str2


  • one for (result from the previous operation) + str3 (assigned to str4)






share|improve this answer



























  • str1 + str2 will not be concatenated to a String in all Java since quite many years.

    – Puce
    8 hours ago


















2















Any answer to your question will be dependant on the JVM implementation and the Java version currently being used. It's a stupid question to ask in an interview.



Java 1.8.0_201



On my machine, with Java 1.8.0_201, your snippet results in this bytecode



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
ALOAD 1
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 2
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 3
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 4
L4
LINENUMBER 19 L4
RETURN


which proves that 5 objects are being created (3 constant String literals, 1 StringBuilder, 1 dynamically produced String instance by StringBuilder#toString).



Java 12.0.2



On my machine, with Java 12.0.2, the bytecode is



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
ALOAD 1
ALOAD 2
ALOAD 3
INVOKEDYNAMIC makeConcatWithConstants(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; [
// handle kind 0x6 : INVOKESTATIC
java/lang/invoke/StringConcatFactory.makeConcatWithConstants(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
// arguments:
"u0001u0001u0001"
]
ASTORE 4
L4
LINENUMBER 17 L4
RETURN


which magically changes "the correct answer" to 4 objects since there is no intermediate String[Buffer/Builder] involved.






share|improve this answer






















  • 1





    each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

    – Carlos Heuberger
    7 hours ago












  • thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

    – Carlos Heuberger
    7 hours ago



















0















Concatenation operation doesn't create those many String objects. It creates aStringBuilder and then appends the strings. So there may be 5 objects,
3 (variables) + 1 (sb) + 1 (Concatenated string).






share|improve this answer



























  • It might be 5.

    – Nexevis
    8 hours ago











  • As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

    – Turing85
    8 hours ago












  • @Turing85 agreed. Updated.

    – javaaddict
    7 hours ago













Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






bhpsh is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f57630924%2fan-interview-question-whats-the-number-of-string-objects-being-created%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























5 Answers
5






active

oldest

votes








5 Answers
5






active

oldest

votes









active

oldest

votes






active

oldest

votes









9















With the given information, the question cannot be definitely answered. As is stated in the JLS, §15.18.1:




... To increase the performance of repeated string concatenation, a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression.




This means that the answer depends at least on the concrete Java compiler used.



I think the best we can do is give an interval as answer:



  • a smart compiler may be able to infer that str1 to str3 are never used and fold the concatenation during compilation, such that only one String-object is created (the one referenced by str4)

  • The maximum sensible number of Strings created should be 5: one each for str1 to str3, one for tmp = str1 + str2 and one for str4 = tmp + str3.

So... my answer would be "something between one to five String-objects". As to the total number of objects created just for this operation... I do not know. This may also depend how exactly e.g. StringBuffer is implemented.



As an aside: I wonder what the reason behind asking such questions is. Normally, one does not need to care about those details.






share|improve this answer






















  • 3





    "I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

    – Andrew Tobilko
    7 hours ago
















9















With the given information, the question cannot be definitely answered. As is stated in the JLS, §15.18.1:




... To increase the performance of repeated string concatenation, a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression.




This means that the answer depends at least on the concrete Java compiler used.



I think the best we can do is give an interval as answer:



  • a smart compiler may be able to infer that str1 to str3 are never used and fold the concatenation during compilation, such that only one String-object is created (the one referenced by str4)

  • The maximum sensible number of Strings created should be 5: one each for str1 to str3, one for tmp = str1 + str2 and one for str4 = tmp + str3.

So... my answer would be "something between one to five String-objects". As to the total number of objects created just for this operation... I do not know. This may also depend how exactly e.g. StringBuffer is implemented.



As an aside: I wonder what the reason behind asking such questions is. Normally, one does not need to care about those details.






share|improve this answer






















  • 3





    "I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

    – Andrew Tobilko
    7 hours ago














9














9










9









With the given information, the question cannot be definitely answered. As is stated in the JLS, §15.18.1:




... To increase the performance of repeated string concatenation, a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression.




This means that the answer depends at least on the concrete Java compiler used.



I think the best we can do is give an interval as answer:



  • a smart compiler may be able to infer that str1 to str3 are never used and fold the concatenation during compilation, such that only one String-object is created (the one referenced by str4)

  • The maximum sensible number of Strings created should be 5: one each for str1 to str3, one for tmp = str1 + str2 and one for str4 = tmp + str3.

So... my answer would be "something between one to five String-objects". As to the total number of objects created just for this operation... I do not know. This may also depend how exactly e.g. StringBuffer is implemented.



As an aside: I wonder what the reason behind asking such questions is. Normally, one does not need to care about those details.






share|improve this answer















With the given information, the question cannot be definitely answered. As is stated in the JLS, §15.18.1:




... To increase the performance of repeated string concatenation, a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression.




This means that the answer depends at least on the concrete Java compiler used.



I think the best we can do is give an interval as answer:



  • a smart compiler may be able to infer that str1 to str3 are never used and fold the concatenation during compilation, such that only one String-object is created (the one referenced by str4)

  • The maximum sensible number of Strings created should be 5: one each for str1 to str3, one for tmp = str1 + str2 and one for str4 = tmp + str3.

So... my answer would be "something between one to five String-objects". As to the total number of objects created just for this operation... I do not know. This may also depend how exactly e.g. StringBuffer is implemented.



As an aside: I wonder what the reason behind asking such questions is. Normally, one does not need to care about those details.







share|improve this answer














share|improve this answer



share|improve this answer








edited 7 hours ago

























answered 8 hours ago









Turing85Turing85

7,1863 gold badges19 silver badges42 bronze badges




7,1863 gold badges19 silver badges42 bronze badges










  • 3





    "I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

    – Andrew Tobilko
    7 hours ago













  • 3





    "I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

    – Andrew Tobilko
    7 hours ago








3




3





"I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

– Andrew Tobilko
7 hours ago






"I wonder what the reason behind asking such questions is." - It reminds me of the "I-read-it-yesterday-I-will-ask-it-tomorrow" type of interviewers

– Andrew Tobilko
7 hours ago














3















Java 8 will likely create 5 objects:



  • 3 for the 3 variables

  • 1 StringBuilder

  • 1 for the concatenated String

With Java 9 things changed though and String concatenation does not use StringBuilder anymore.






share|improve this answer




















  • 3





    Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

    – Andy Thomas
    8 hours ago







  • 1





    stackoverflow.com/questions/12806739/…

    – 17slim
    8 hours ago






  • 4





    @3limin4t0r "char[] is a primitive value" - Nope.

    – Turing85
    8 hours ago







  • 2





    @AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

    – Puce
    8 hours ago











  • That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

    – 17slim
    8 hours ago















3















Java 8 will likely create 5 objects:



  • 3 for the 3 variables

  • 1 StringBuilder

  • 1 for the concatenated String

With Java 9 things changed though and String concatenation does not use StringBuilder anymore.






share|improve this answer




















  • 3





    Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

    – Andy Thomas
    8 hours ago







  • 1





    stackoverflow.com/questions/12806739/…

    – 17slim
    8 hours ago






  • 4





    @3limin4t0r "char[] is a primitive value" - Nope.

    – Turing85
    8 hours ago







  • 2





    @AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

    – Puce
    8 hours ago











  • That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

    – 17slim
    8 hours ago













3














3










3









Java 8 will likely create 5 objects:



  • 3 for the 3 variables

  • 1 StringBuilder

  • 1 for the concatenated String

With Java 9 things changed though and String concatenation does not use StringBuilder anymore.






share|improve this answer













Java 8 will likely create 5 objects:



  • 3 for the 3 variables

  • 1 StringBuilder

  • 1 for the concatenated String

With Java 9 things changed though and String concatenation does not use StringBuilder anymore.







share|improve this answer












share|improve this answer



share|improve this answer










answered 8 hours ago









PucePuce

29.1k9 gold badges61 silver badges117 bronze badges




29.1k9 gold badges61 silver badges117 bronze badges










  • 3





    Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

    – Andy Thomas
    8 hours ago







  • 1





    stackoverflow.com/questions/12806739/…

    – 17slim
    8 hours ago






  • 4





    @3limin4t0r "char[] is a primitive value" - Nope.

    – Turing85
    8 hours ago







  • 2





    @AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

    – Puce
    8 hours ago











  • That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

    – 17slim
    8 hours ago












  • 3





    Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

    – Andy Thomas
    8 hours ago







  • 1





    stackoverflow.com/questions/12806739/…

    – 17slim
    8 hours ago






  • 4





    @3limin4t0r "char[] is a primitive value" - Nope.

    – Turing85
    8 hours ago







  • 2





    @AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

    – Puce
    8 hours ago











  • That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

    – 17slim
    8 hours ago







3




3





Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

– Andy Thomas
8 hours ago






Good answer, but for Java 8, I think you're overlooking the char[] object used by the implementation of StringBuilder.

– Andy Thomas
8 hours ago





1




1





stackoverflow.com/questions/12806739/…

– 17slim
8 hours ago





stackoverflow.com/questions/12806739/…

– 17slim
8 hours ago




4




4





@3limin4t0r "char[] is a primitive value" - Nope.

– Turing85
8 hours ago






@3limin4t0r "char[] is a primitive value" - Nope.

– Turing85
8 hours ago





2




2





@AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

– Puce
8 hours ago





@AndyThomas if you count the char[] you will end up with even more as also String uses char[] and some constructors also create copies of char[].

– Puce
8 hours ago













That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

– 17slim
8 hours ago





That's a good point actually, which leads me to believe @Turing85's answer is more correct without further clarification from the interviewers.

– 17slim
8 hours ago











2















It should be 5:



  • three for the three literals (assigned to str1, str2 and str3)


  • one for str1 + str2


  • one for (result from the previous operation) + str3 (assigned to str4)






share|improve this answer



























  • str1 + str2 will not be concatenated to a String in all Java since quite many years.

    – Puce
    8 hours ago















2















It should be 5:



  • three for the three literals (assigned to str1, str2 and str3)


  • one for str1 + str2


  • one for (result from the previous operation) + str3 (assigned to str4)






share|improve this answer



























  • str1 + str2 will not be concatenated to a String in all Java since quite many years.

    – Puce
    8 hours ago













2














2










2









It should be 5:



  • three for the three literals (assigned to str1, str2 and str3)


  • one for str1 + str2


  • one for (result from the previous operation) + str3 (assigned to str4)






share|improve this answer















It should be 5:



  • three for the three literals (assigned to str1, str2 and str3)


  • one for str1 + str2


  • one for (result from the previous operation) + str3 (assigned to str4)







share|improve this answer














share|improve this answer



share|improve this answer








edited 8 hours ago

























answered 8 hours ago









Laurenz AlbeLaurenz Albe

62.8k11 gold badges44 silver badges66 bronze badges




62.8k11 gold badges44 silver badges66 bronze badges















  • str1 + str2 will not be concatenated to a String in all Java since quite many years.

    – Puce
    8 hours ago

















  • str1 + str2 will not be concatenated to a String in all Java since quite many years.

    – Puce
    8 hours ago
















str1 + str2 will not be concatenated to a String in all Java since quite many years.

– Puce
8 hours ago





str1 + str2 will not be concatenated to a String in all Java since quite many years.

– Puce
8 hours ago











2















Any answer to your question will be dependant on the JVM implementation and the Java version currently being used. It's a stupid question to ask in an interview.



Java 1.8.0_201



On my machine, with Java 1.8.0_201, your snippet results in this bytecode



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
ALOAD 1
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 2
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 3
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 4
L4
LINENUMBER 19 L4
RETURN


which proves that 5 objects are being created (3 constant String literals, 1 StringBuilder, 1 dynamically produced String instance by StringBuilder#toString).



Java 12.0.2



On my machine, with Java 12.0.2, the bytecode is



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
ALOAD 1
ALOAD 2
ALOAD 3
INVOKEDYNAMIC makeConcatWithConstants(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; [
// handle kind 0x6 : INVOKESTATIC
java/lang/invoke/StringConcatFactory.makeConcatWithConstants(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
// arguments:
"u0001u0001u0001"
]
ASTORE 4
L4
LINENUMBER 17 L4
RETURN


which magically changes "the correct answer" to 4 objects since there is no intermediate String[Buffer/Builder] involved.






share|improve this answer






















  • 1





    each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

    – Carlos Heuberger
    7 hours ago












  • thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

    – Carlos Heuberger
    7 hours ago
















2















Any answer to your question will be dependant on the JVM implementation and the Java version currently being used. It's a stupid question to ask in an interview.



Java 1.8.0_201



On my machine, with Java 1.8.0_201, your snippet results in this bytecode



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
ALOAD 1
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 2
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 3
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 4
L4
LINENUMBER 19 L4
RETURN


which proves that 5 objects are being created (3 constant String literals, 1 StringBuilder, 1 dynamically produced String instance by StringBuilder#toString).



Java 12.0.2



On my machine, with Java 12.0.2, the bytecode is



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
ALOAD 1
ALOAD 2
ALOAD 3
INVOKEDYNAMIC makeConcatWithConstants(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; [
// handle kind 0x6 : INVOKESTATIC
java/lang/invoke/StringConcatFactory.makeConcatWithConstants(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
// arguments:
"u0001u0001u0001"
]
ASTORE 4
L4
LINENUMBER 17 L4
RETURN


which magically changes "the correct answer" to 4 objects since there is no intermediate String[Buffer/Builder] involved.






share|improve this answer






















  • 1





    each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

    – Carlos Heuberger
    7 hours ago












  • thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

    – Carlos Heuberger
    7 hours ago














2














2










2









Any answer to your question will be dependant on the JVM implementation and the Java version currently being used. It's a stupid question to ask in an interview.



Java 1.8.0_201



On my machine, with Java 1.8.0_201, your snippet results in this bytecode



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
ALOAD 1
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 2
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 3
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 4
L4
LINENUMBER 19 L4
RETURN


which proves that 5 objects are being created (3 constant String literals, 1 StringBuilder, 1 dynamically produced String instance by StringBuilder#toString).



Java 12.0.2



On my machine, with Java 12.0.2, the bytecode is



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
ALOAD 1
ALOAD 2
ALOAD 3
INVOKEDYNAMIC makeConcatWithConstants(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; [
// handle kind 0x6 : INVOKESTATIC
java/lang/invoke/StringConcatFactory.makeConcatWithConstants(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
// arguments:
"u0001u0001u0001"
]
ASTORE 4
L4
LINENUMBER 17 L4
RETURN


which magically changes "the correct answer" to 4 objects since there is no intermediate String[Buffer/Builder] involved.






share|improve this answer















Any answer to your question will be dependant on the JVM implementation and the Java version currently being used. It's a stupid question to ask in an interview.



Java 1.8.0_201



On my machine, with Java 1.8.0_201, your snippet results in this bytecode



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
ALOAD 1
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 2
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 3
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 4
L4
LINENUMBER 19 L4
RETURN


which proves that 5 objects are being created (3 constant String literals, 1 StringBuilder, 1 dynamically produced String instance by StringBuilder#toString).



Java 12.0.2



On my machine, with Java 12.0.2, the bytecode is



 L0
LINENUMBER 13 L0
LDC "First"
ASTORE 1
L1
LINENUMBER 14 L1
LDC "Second"
ASTORE 2
L2
LINENUMBER 15 L2
LDC "Third"
ASTORE 3
L3
LINENUMBER 16 L3
ALOAD 1
ALOAD 2
ALOAD 3
INVOKEDYNAMIC makeConcatWithConstants(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; [
// handle kind 0x6 : INVOKESTATIC
java/lang/invoke/StringConcatFactory.makeConcatWithConstants(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
// arguments:
"u0001u0001u0001"
]
ASTORE 4
L4
LINENUMBER 17 L4
RETURN


which magically changes "the correct answer" to 4 objects since there is no intermediate String[Buffer/Builder] involved.







share|improve this answer














share|improve this answer



share|improve this answer








edited 7 hours ago

























answered 7 hours ago









Andrew TobilkoAndrew Tobilko

32.9k10 gold badges53 silver badges102 bronze badges




32.9k10 gold badges53 silver badges102 bronze badges










  • 1





    each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

    – Carlos Heuberger
    7 hours ago












  • thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

    – Carlos Heuberger
    7 hours ago













  • 1





    each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

    – Carlos Heuberger
    7 hours ago












  • thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

    – Carlos Heuberger
    7 hours ago








1




1





each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

– Carlos Heuberger
7 hours ago






each string also contains a byte[], same for StringBuilder (and first one will also create a static byte[0]) and eventually (haven't checked) the StringBuilder can create a new, bigger buffer (if needed) (just proving your 2nd sentence true)

– Carlos Heuberger
7 hours ago














thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

– Carlos Heuberger
7 hours ago






thinking about it, is LDC creating a (new) Object? or just using one? (the literal could have been used before)

– Carlos Heuberger
7 hours ago












0















Concatenation operation doesn't create those many String objects. It creates aStringBuilder and then appends the strings. So there may be 5 objects,
3 (variables) + 1 (sb) + 1 (Concatenated string).






share|improve this answer



























  • It might be 5.

    – Nexevis
    8 hours ago











  • As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

    – Turing85
    8 hours ago












  • @Turing85 agreed. Updated.

    – javaaddict
    7 hours ago















0















Concatenation operation doesn't create those many String objects. It creates aStringBuilder and then appends the strings. So there may be 5 objects,
3 (variables) + 1 (sb) + 1 (Concatenated string).






share|improve this answer



























  • It might be 5.

    – Nexevis
    8 hours ago











  • As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

    – Turing85
    8 hours ago












  • @Turing85 agreed. Updated.

    – javaaddict
    7 hours ago













0














0










0









Concatenation operation doesn't create those many String objects. It creates aStringBuilder and then appends the strings. So there may be 5 objects,
3 (variables) + 1 (sb) + 1 (Concatenated string).






share|improve this answer















Concatenation operation doesn't create those many String objects. It creates aStringBuilder and then appends the strings. So there may be 5 objects,
3 (variables) + 1 (sb) + 1 (Concatenated string).







share|improve this answer














share|improve this answer



share|improve this answer








edited 7 hours ago

























answered 8 hours ago









javaaddictjavaaddict

1371 silver badge8 bronze badges




1371 silver badge8 bronze badges















  • It might be 5.

    – Nexevis
    8 hours ago











  • As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

    – Turing85
    8 hours ago












  • @Turing85 agreed. Updated.

    – javaaddict
    7 hours ago

















  • It might be 5.

    – Nexevis
    8 hours ago











  • As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

    – Turing85
    8 hours ago












  • @Turing85 agreed. Updated.

    – javaaddict
    7 hours ago
















It might be 5.

– Nexevis
8 hours ago





It might be 5.

– Nexevis
8 hours ago













As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

– Turing85
8 hours ago






As was stated many times, the JLS says that "a Java compiler may use the StringBuffer class or a similar technique to reduce the number of intermediate String objects that are created by evaluation of an expression." Emphasis is on may.

– Turing85
8 hours ago














@Turing85 agreed. Updated.

– javaaddict
7 hours ago





@Turing85 agreed. Updated.

– javaaddict
7 hours ago










bhpsh is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















bhpsh is a new contributor. Be nice, and check out our Code of Conduct.












bhpsh is a new contributor. Be nice, and check out our Code of Conduct.











bhpsh is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f57630924%2fan-interview-question-whats-the-number-of-string-objects-being-created%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367