Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

According to String#intern(), intern method is supposed to return the String from the String pool if the String is found in String pool, otherwise a new string object will be added in String pool and the reference of this String is returned.

So i tried this:

String s1 = "Rakesh";
String s2 = "Rakesh";
String s3 = "Rakesh".intern();

if ( s1 == s2 ){
    System.out.println("s1 and s2 are same");  // 1.
}

if ( s1 == s3 ){
    System.out.println("s1 and s3 are same" );  // 2.
}

I was expecting that s1 and s3 are same will be printed as s3 is interned, and s1 and s2 are same will not be printed. But the result is: both lines are printed. So that means, by default String constants are interned. But if it is so, then why do we need the intern method? In other words when should we use this method?

share|improve this question
3  
The Javadoc you linked also states "All literal strings and string-valued constant expressions are interned." – Jorn Dec 6 '09 at 11:54
not an exact duplicate.. – Bozho Dec 6 '09 at 11:59
@Jorn: that's right. So why do we have intern as public method. Shouldn't we have intern as private method, so that nobody could have access to it. Or is there any purpose of this method? – Rakesh Juyal Dec 6 '09 at 12:05
Bozho: Well actually it is, this one's just a lot better refined as a question. – Esko Dec 6 '09 at 12:09
show 2 more comments

4 Answers

up vote 25 down vote accepted

Java automatically interns String literals. This means that in many cases, the == operator appears to work for Strings in the same way that it does for ints or other primitive values.

Since interning is automatic for String literals, the intern() method is to be used on Strings constructed with new String()

Using your example:

String s1 = "Rakesh";
String s2 = "Rakesh";
String s3 = "Rakesh".intern();
String s4 = new String("Rakesh");
String s5 = new String("Rakesh").intern();

if ( s1 == s2 ){
    System.out.println("s1 and s2 are same");  // 1.
}

if ( s1 == s3 ){
    System.out.println("s1 and s3 are same" );  // 2.
}

if ( s1 == s4 ){
    System.out.println("s1 and s4 are same" );  // 3.
}

if ( s1 == s5 ){
    System.out.println("s1 and s5 are same" );  // 4.
}

will return:

s1 and s2 are same
s1 and s3 are same
s1 and s5 are same

Refer to JavaTechniques "String Equality and Interning" for more information.

share|improve this answer
1  
+1 for String s5 = new String("Rakesh").intern(); – Rakesh Juyal Dec 6 '09 at 12:06
I'm assuming that Java automatically interns String literals for optimization purposes. It can do this safely only because Strings are immutable, correct? – styfle Jan 4 '12 at 0:06
New to Java (I am from the C#.NET world) and I sometimes see in a Java legacy project "".intern() so if I understand it correctly that this is "nonsense" also for empty strings. – hfrmobile Apr 11 at 11:46
s5 --> Ah, I got it! Thanks for your explanation! – hfrmobile Apr 11 at 12:07

On a recent project, some huge data structures were set up with data that was read in from a database (and hence not String constants/literals) but with a huge amount of duplication. It was a banking application, and things like the names of a modest set (maybe 100 or 200) corporations appeared all over the place. The data structures were already large, and if all those corp names had been unique objects they would have overflowed memory. Instead, all the data structures had references to the same 100 or 200 String objects, thus saving lots of space.

Another small advantage of interned Strings is that == can be used (successfully!) to compare Strings if all involved strings are guaranteed to be interned. Apart from the leaner syntax, this is also a performance enhancement. But as others have pointed out, doing this harbors a great risk of introducing programming errors, so this should be done only as a desparate measure of last resort.

The downside is that interning a String takes more time than simply throwing it on the heap, and that the space for interned Strings may be limited, depending on the Java implementation. It's best done when you're dealing with a known reasonable number of Strings with many duplications.

share|improve this answer
@The downside is that interning a String takes more time than simply throwing it on the heap, and that the space for interned Strings may be limited even if you don't use intern method for String constant it will be interned automatically. – Rakesh Juyal Dec 6 '09 at 12:08
@Rakesh: There are not that many String constants in any given class usually, so it is not a problem of space/time with constants. – David Rodríguez - dribeas Dec 6 '09 at 12:13
Yes, Rakesh's comment doesn't apply because interning Strings is only (explicitly) done with Strings that are "generated" somehow, be it by internal manipulation or by retrieving from a database or such. With constants we don't have a choice. – Carl Smotricz Dec 6 '09 at 12:24
+1. I think this is a good example of when interning makes sense. I don't agree on == for strings though. – Alexander Pogrebnyak Dec 6 '09 at 12:34
@Carl. I've expanded my answer to show evils of == – Alexander Pogrebnyak Dec 6 '09 at 12:52
show 1 more comment

I want to add my 2 cents on using == with interned strings.

The first thing String.equals does is this==object.

So although there is some miniscule performance gain ( you are not calling a method), from the maintainer point of view using == is a nightmare, because some interned strings have a tendency to become non-interned.

So I suggest not to rely on special case of == for interned strings, but always use equals as Gosling intended.

EDIT: interned becoming non-interned:

V1.0
public class MyClass
{
  private String reference_val;

  ...

  private boolean hasReferenceVal ( final String[] strings )
  {
    for ( String s : strings )
    {
      if ( s == reference_val )
      {
        return true;
      }
    }

    return false;
  }

  private void makeCall ( )
  {
     final String[] interned_strings =  { ... init with interned values ... };

     if ( hasReference( interned_strings ) )
     {
        ...
     }
  }
}

In version 2.0 maintainer decided to make hasReferenceVal public, without going into much detail that it expects an array of interned strings.

V2.0
public class MyClass
{
  private String reference_val;

  ...

  public boolean hasReferenceVal ( final String[] strings )
  {
    for ( String s : strings )
    {
      if ( s == reference_val )
      {
        return true;
      }
    }

    return false;
  }

  private void makeCall ( )
  {
     final String[] interned_strings =  { ... init with interned values ... };

     if ( hasReference( interned_strings ) )
     {
        ...
     }
  }
}

Now you have a bug, that may be very hard to find, because in majority of cases array contains literal values, and sometimes a non-literal string is used. If equals were used instead of == then hasReferenceVal would have still continue to work. Once again, performance gain is miniscule, but maintenance cost is high.

share|improve this answer
"some interned strings have a tendency to become non-interned." wow, that would be... strange. Can you cite a reference, please? – Carl Smotricz Dec 6 '09 at 12:26
OK, I thought you were referring to Strings actually wandering out of the intern pool and onto the heap thanks to magic in the JVM. What you're saying is that == makes certain classes of programmer errors more likely. – Carl Smotricz Dec 6 '09 at 12:57
"So I suggest not to rely on special case of == for interned strings, but always use equals as Gosling intended." Do you have a direct quote or comment from Gosling stating this? If that's the case why did he even bother putting intern() and the use of == in the language? – Ranx Sep 15 '12 at 17:44
intern is not good for direct comparion (==), even though it works if both strings are interned. it is great to lower total memory used : when the same string is used in more than 1 place. – tgkprog Apr 30 at 20:54

String literals and constants are intenred by default. That is, "foo" == "foo" (declared by the String literals), but new String("foo") != new String("foo").

share|improve this answer
So, the question is when should we use intern, – Rakesh Juyal Dec 6 '09 at 12:03
that was pointed to stackoverflow.com/questions/1833581/when-to-use-intern, and a number of other questions, some of them from yesterday. – Bozho Dec 6 '09 at 12:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.