18
votes
9answers
443 views

behavior of String literals are confusing

The behavior of String literals is very confusing in the code below. I can understand line 1, line 2, and line 3 are true, but why is line 4 false? When I print the hashcode of both are the same ...
0
votes
2answers
35 views

String object life in StringPool

All we know that JVM stores String variables in a separate StringPool. Every time when we create a String (eg. String s1 = "anystring") it stores as a constant & when we create new String variable ...
0
votes
4answers
58 views

Simple String Pool

If I have a completely empty String Pool in Java and I do the following, does the string object 'Hello' be added to the string pool.? String myStr = new String('Hello'); I know that subsequent ...
3
votes
2answers
169 views

Java 7 - String.intern() behaviour

I've read this answer about how to check if a string is interned in Java, but I don't understand the following results: String x = args[0]; // args[0] = "abc"; String a = "a"; String y = a + "bc"; ...
6
votes
6answers
141 views

String Pool behavior

I read this Questions about Java's String pool and understand the basic concept of string pool but still don't understand the behavior. First: it works if you directly assign the value and both ...
10
votes
3answers
286 views

Java String pool - When does the pool change?

I have two questions: public static void main(String[] args) { String s1 = "bla"; String s2 = "b" +"l" + "a"; String s3 = "b".concat("l").concat("a"); if(s1 == s2) ...
7
votes
5answers
219 views

String Pool: “Te”+“st” faster than “Test”?

I am trying some performance benchmark regarding String Pool. However, the outcome is not expected. I made 3 static methods perform0() method ... creates a new object every time perform1() method ...
1
vote
4answers
145 views

Is String pool is carried out when two String having same literal ( java)

I have refernced the following links what is String pool in java? Garbage collection and Strings http://www.xyzws.com/Javafaq/what-is-string-literal-pool/3 Questions about Java's String pool ...
3
votes
1answer
132 views

Does Objective-C use string pooling?

I know that Java and C# both use a string pool to save memory when dealing with string literals. Does Objective-C use any such mechanism? If not, why not?
5
votes
4answers
668 views

String POOL in java

Java has string pool, due to which objects of string class are immutable. But my question stands - What was the need to make String POOL? Why string class was not kept like other class to hold its ...
6
votes
3answers
1k views

Regarding Java String Constant Pool

This is regarding the Java String Constant Pool. In one of my Programs i am decrypting the password for the database and storing it in a String. I heard that the Java Strings will be stored in a ...
5
votes
4answers
2k views

The best alternative for String flyweight implementation in Java

My application is multithreaded with intensive String processing. We are experiencing excessive memory consumption and profiling has demonstrated that this is due to String data. I think that memory ...
2
votes
3answers
706 views

Avoid creating 'new' String objects when converting a byte[] to String using a specific charset

I'm reading from a binary file and want to convert the bytes to US ASCII strings. Is there any way to do this without calling new on String to avoid multiple semantically equal String objects being ...