Tagged Questions
3
votes
4answers
324 views
Clearest way to code structarray map functor in C++
This is a poll for opinions on the most readable way to do something -- whether to use a C++ pointer-to-member, a byte offset, or a templatized functor to define "select member X from structure foo".
...
0
votes
2answers
142 views
Member function pointers - only a address?
http://www.codeproject.com/KB/cpp/fastdelegate2.aspx
In the second paragraf of the introduction in the above article it says: "This is due to the expensive heap memory allocation that is required to ...