vote up 0 vote down star

Hi,

Would there be any perforamce gain in ecapsulating a string in a lightweight reference object vs encapsulating a string in a struct. Would the string variable not utlimately point to the heap anyway , irrespective of whether it is contained within a value type or reference type?

flag

2 Answers

vote up 3 vote down check

The string is always located on the heap, so it wouldn't help. Putting the reference to the string in the struct can only make it slower, since it needs an extra derefence. But this won't be measurable in practice probably.

If you really wanted a string to be on the stack instead of the heap, you would have to create your own custom strings as a struct containing chars. But that's going to be a lot of pain for no gain and can only be used to represent a fixed sized string since the struct is of a fixed size.

link|flag
Thanks guys that cleared it up! – Mule Jun 14 at 10:55
vote up 0 vote down

Since you tagged this one as .NET the string will most certainly be stored on the heap. However I don't think that there will be a noticeable difference and why should there be? First the object or struct must dereferenced and located and after that the string itself. It could be a plus, if you could do without encapsulating the string from a performance and a memory perspective.

link|flag

Your Answer

Get an OpenID
or

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