Tagged Questions

18
votes
2answers
374 views

Which debugging tool can list strings internalized?

I am looking to a debugging tool that can list the strings that have been internalized? Ideally, I would like to put a mark and have a list of the strings that been added after that mark. Thanks in ...
12
votes
1answer
292 views

Why does this string have a reference count of 4? (Delphi 2007)

This is a very Delphi specific question (maybe even Delphi 2007 specific). I am currently writing a simple StringPool class for interning strings. As a good little coder I also added unit tests and ...
11
votes
5answers
446 views

Real Life, Practical Example of Using String.intern() in Java?

I've seen many primitive examples describing how String intern()'ing works, but I have yet to see a real-life use-case that would benefit from it. The only situation that I can dream up is having a ...
10
votes
4answers
742 views

When to use intern()

I see a lot of legacy code like this: class A { public static final String CONSTANT = "value".intern(); ... } I don't see any reason for the intern(), as in the Javadoc one can read: "All ...
6
votes
3answers
318 views

Are strings pooled in Python

Does Python have a pool of all strings and are they (strings) singletons there? More precise, in the following code one or two strings were created in memory: a = str(num) b = str(num) ?
5
votes
6answers
471 views

Why does .NET create new substrings instead of pointing into existing strings?

From a brief look using Reflector, it looks like String.Substring() allocates memory for each substring. Am I correct that this is the case? I thought that wouldn't be necessary since strings are ...
4
votes
2answers
131 views

String interning in .Net Framework - What are the benefits and when to use interning

I want to know the process and internals of string interning specific to .Net framework. Would also like to know the benefits of using interning and the scenarios/situations where we should use string ...
4
votes
3answers
337 views

Java, HashMaps and using Strings as the keys - does the string value get stored twice?

If I have a HashMap that looks like this: HashMap<String, MyObject> where the String key is a field in MyObject, does this string value get stored twice? So when I add entries: ...
3
votes
5answers
68 views

String.intern() vs manual string-to-identifier mapping?

I recall seeing a couple of string-intensive programs that do a lot of string comparison but relatively few string manipulation, and that have used a separate table to map strings to identifiers for ...
3
votes
2answers
74 views

java synchronization on string as id

I have gone through the below links Problem with synchronizing on String objects? and http://illegalargumentexception.blogspot.com/2008/04/java-synchronizing-on-transient-id.html Now my question: I ...
3
votes
3answers
276 views

String comparison and String interning in Java

When should one compare Strings as objects and when should one use their equals method? To make sure, I always use equals, but that doesn't seem very efficient. In what situations can I be certain ...
2
votes
4answers
132 views

How can I avoid string.intern() contention and keep the memory footprint low?

I am parsing a rather large (200 MB) XML file that results in a tree of objects each defining a bunch of parameters (key=value). This data structure is running in a Tomcat webapp and used to lookup ...
2
votes
2answers
111 views

Does the CLR/JVM keep one single intern pool for all running .net/java apps?

The following is an extract from MSDN: The common language runtime conserves string storage by maintaining a table, called the intern pool, that contains a single reference to each unique ...
2
votes
1answer
77 views

Are .NET resource file strings interned?

When I use a .resx file to store fixed string values (to be bound to controls on an .aspx page), are these strings interned? I presume the compiler reads in the strings from the XML file and replaces ...
2
votes
2answers
148 views

Is there any way to “flush” interned strings?

I'm using an external library which uses String.intern() for performance reasons. That's fine, but I'm invoking that library a lot in a given run and so I run into the dreaded ...
2
votes
10answers
2k views

deadlock on synchronized ( String intern())

I user sun jdk 1.5 ThreadPoolExecutor( 24, 24,60,TimeUnit.SECONDS, new LinkedBlockingQueue()). soemtime I use jdb tool to find the status of all threads in thread pool are " waiting in a monitor", ...
1
vote
1answer
191 views

How is Java's String#intern() method implemented?

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?