Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there something like intern() method in C or C++ like there is in Java ? If there isn't, how can I carry out string interning in C or C++?

share|improve this question
2  
Just code exactly what you want. – David Schwartz May 17 '12 at 11:34
3  
Suhail, have you looked on these questions: stackoverflow.com/questions/1116040/… , stackoverflow.com/questions/4060411/… ? – dbf May 17 '12 at 11:35
@David Schwartz A caching like functionality. I want string interning – Suhail Gupta May 17 '12 at 11:35
Sounds like you're looking for boost::flyweight< std::string >, all identical strings will use the same memory. – Ylisar May 17 '12 at 11:39
1  
@R. Martinho Fernandes i asked in C AND C++ – Suhail Gupta May 17 '12 at 11:42
show 6 more comments

3 Answers

boost::flyweight< std::string > seems to be exactly what you're looking for.

share|improve this answer
Is there any other way. I am not aware of this library – Suhail Gupta May 17 '12 at 12:26
@SuhailGupta now you are: boost.org – Erick Robertson May 17 '12 at 12:27
@Erick Robertson but is there any other way ? – Suhail Gupta May 17 '12 at 12:27
1  
@Erick Robertson ha ha ! – Suhail Gupta May 17 '12 at 12:32
1  
More precisely boost::flyweight makes the object immutable, [] won't cause problems because boost::flyweight< T > only ever exposes const T&. – Ylisar May 17 '12 at 13:47
show 3 more comments

Is there something like intern() method in C like we have in Java ?

Not in the standard C library.

If there isn't, how to carry out string interning in C?

With great difficulty, I fear. The first problem is that "string" is not a well-defined thing in C. Instead you have char *, which might point at a zero-terminated string, or might just denote a character position. Then you've got the problem that some strings are embedded in other things ... or are stored on the stack. Both of which make interning impossible and/or meaningless. Then, there is the problem that C string literals are not guaranteed to be interned ... in the way that Java guarantees it. Finally, there is the problem that interning is a storage leak waiting to happen ... if the language is not garbage collected.

Having said that, the way to (attempt to) implement interning in C would be to create a hash table to hold the interned strings. You'd need to make it a precondition that you cannot intern a string unless it is either a literal or a string allocated in its own heap node. To address the storage leak issue, you'd need a per-string reference count to detect when an interned string can be discarded.

share|improve this answer

What would string interning mean in a language which has value semantics? Interning is a mechanism to force object identity for references to strings with value identity. It's relevant in languages which use reference semantics and use object identity as the default comparison function. C++ uses value semantics by default, and types like std::string don't have identity, so interning makes no sense.

Some implementations (e.g. g++) may use a form of reference semantics for the string data, behind the scenes. Such an implementation could offer some sort of interning of that data, as an extension. (G++ doesn't, as far as I know, but does automatically "intern" empty strings.)

Most other implementations don't even use reference semantics internally. How would you intern an implementation using the small string optimization (like MS)? Where the data is literally in the class in some cases, and there is no dynamically allocated memory.

share|improve this answer

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.