Tagged Questions
11
votes
6answers
497 views
Is string interning really useful?
I was having a conversation about strings and various languages a while back, and the topic of string interning came up. Apparently Java and the .NET framework do this automatically with all strings, ...
5
votes
6answers
470 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
129 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
121 views
When is it a good idea to intern strings manually in a .Net code?
The reference is here:
http://msdn.microsoft.com/en-us/library/system.string.intern.aspx
Looks like this is done automatically by the compiler a lot, but can also be done manually.
Please correct me ...
4
votes
3answers
542 views
Operator overloading in Generic Methods
This code snippet is from C# in Depth
static bool AreReferencesEqual<T>(T first, T second)
where T : class
{
return first == second;
}
static void Main()
{
...
3
votes
2answers
58 views
Intern string literals misunderstanding?
I dont understand :
MSDN says
http://msdn.microsoft.com/en-us/library/system.string.intern.aspx
Consequently, an instance of a literal string with a particular value
only exists once in the ...
3
votes
3answers
51 views
Has String.Intern had the value?
String.Intern has a special pool for strings which can later be retrieved.
Is there any way for me to know that the specified string was taken from the pool , and was NOt newly created ?
example :
...
3
votes
4answers
150 views
Question on string interning performance
I'm curious. The scenario is a web app/site with e.g. 100's of concurrent connections and many (20?) page loads per second.
If the app needs to server a formatted string
string.Format("Hello, {0}", ...
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 ...
0
votes
3answers
129 views
Get a key equal to an item from SortedDictionary?
Is there any way to retrieve a key from a SortedDictionary that is equal to a given object? To illustrate, lets say I create a dictionary that has a fairly memory-heavy, immutable key type:
var ...