String POOL in java

后端 未结 4 1078
隐瞒了意图╮
隐瞒了意图╮ 2021-01-04 21:06

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?

相关标签:
4条回答
  • 2021-01-04 21:45

    Refer following links:

    Questions about Java's String pool

    Some queries regarding Java String Pool

    Regarding Java String Constant Pool

    and, you'll get your answer.

    In one sentence, the answer is to use JVM memory cleaverly

    0 讨论(0)
  • 2021-01-04 21:55

    the benifit of making string as immutable was for the security feature. Read below

    Why String has been made immutable in Java?

    Though, performance is also a reason (assuming you are already aware of the internal String pool maintained for making sure that the same String object is used more than once without having to create/re-claim it those many times), but the main reason why String has been made immutable in Java is 'Security'. Surprised? Let's understand why.

    Suppose you need to open a secure file which requires the users to authenticate themselves. Let's say there are two users named 'user1' and 'user2' and they have their own password files 'password1' and 'password2', respectively. Obviously 'user2' should not have access to 'password1' file.

    As we know the filenames in Java are specified by using Strings. Even if you create a 'File' object, you pass the name of the file as a String only and that String is maintained inside the File object as one of its members.

    Had String been mutable, 'user1' could have logged into using his credentials and then somehow could have managed to change the name of his password filename (a String object) from 'password1' to 'password2' before JVM actually places the native OS system call to open the file. This would have allowed 'user1' to open user2's password file. Understandably it would have resulted into a big security flaw in Java. I understand there are so many 'could have's here, but you would certainly agree that it would have opened a door to allow developers messing up the security of many resources either intentionally or un-intentionally.

    With Strings being immutable, JVM can be sure that the filename instance member of the corresponding File object would keep pointing to same unchanged "filename" String object. The 'filename' instance member being a 'final' in the File class can anyway not be modified to point to any other String object specifying any other file than the intended one (i.e., the one which was used to create the File object).

    0 讨论(0)
  • 2021-01-04 21:56

    When we compiler see's that a new String literal has to be created,it first check's the pool for an identical string,if found no new String literal is created,the existing String is referred.

    0 讨论(0)
  • 2021-01-04 22:02

    A pool is possible because the strings are immutable. But the immutability of the String hasn't been decided only because of this pool. Immutability has numerous other benefits. BTW, a Double is also immutable, and there is no pool of Doubles.

    The need for the String pool is to reduce the memory needed to hold all the String literals (and the interned Strings) a program uses, since these literals have a good chance of being used many times, in many places of the program. Instead of having thousands of copies of the same String literal, you just have thousand references to the same String, which reduces the memory usage.

    Note that the String class is not different from other classes: it holds its own char array. It may also share it with other String instances, though, when substring is called.

    0 讨论(0)
提交回复
热议问题