What does the following C/C++ construction do?
(A->*B)(C,D)[E]
Name:
Anonymous2011-08-09 13:48
I'm not sure, but I think B is a pointer to a function that is stored in a struct (A), and C and D are parameters to that function. Also, the return type is an array.