I tried to look at Java's String#intern() method, but it's public native String intern();

In general, how is interning implemented? In String's case?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

For Sun Java, start with JVM_InternString, on line 3606 of jvm.cpp. Technically, the actual String method is in java/lang/String.c, but it immediately calls JVM_InternString. You can continue to StringTable::intern in symbolTable.cpp.

In a more abstract sense, the purpose of interning is to map equivalent strings to a single canonical one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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