摘要:
In debugging, it's always annoying to step into CString like classes as in most cases we don't need to get into there. There does exist solution to NoStepInto functions/classes you don't intend to step into:1. Ahead of VS20101) Look into this article to add something into Registry: How t 阅读全文
摘要:
Two ways to make use of it:1) directly declare a function pointer variable at the place where it's required. like below:void (*pFunc)(int); // pFunc is a variable herepFunc = &FuncA;pFunc(2);2) typedef a function poiner type and then use it. like below:typedef void (*pFunc)(int);pFunc pFuncO 阅读全文