Is there a general rule as to when I should use void[] instead of ubyte[]? Is either preferred?

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

void[] for data that may contain pointers, byte[] for data that's actually just data, like network buffers or files. (I realize Phobos is inconsistent on this)

The reasoning is that the GC scans void[]s for pointers, but not ubyte[]s.

link|improve this answer
3  
Note that this is what type the memory is allocated as rather than the type of the references you have to it. – BCS Aug 13 '11 at 18:58
1  
I guess your "I realize Phobos is inconsistent on this" pretty much answered any follow-up questions I had. Thanks. :) – Mehrdad Aug 14 '11 at 17:57
feedback

Check out this discussion:

http://www.digitalmars.com/d/archives/digitalmars/D/learn/272.html

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.