what is meant by string pooling?
Answer Posted / devarathnam
Hi... Basically string pooling is a part of the heap memory
all string literals will be storing in the string pool
memory.
for example: String s1="DEVARATHNAM";// This is a string
literal ,will store in the string pool .
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
What is overriding in java?
What is the significance of continue jump statement? Explain with an example.
How do generics work?
Can a set contain duplicates?
How do you check if an arraylist is not empty?
What is java util list?
What is the definition of tree ?
How can I right-justify a string?
What is the purpose of javac exe?
What is the final class modifier?
Explain what do you mean by functional overloading in java?
How are observer and observable used in java programming?
What is parsing a sentence?
Can a class have multiple superclasses?
Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.