Stephanus
- 1,316
- 104
I have no idea what function pointers in C++ with soo many function overloadings.tAllan said:In C++ it's generally not necessary or recommended to use function pointers. Such a thing would be common in C for things like event driven ui engines, e.g. lists of callback functions. But in C++ you would probably want to use interfaces or functors.
But now that I think about it, it's common to use C libraries in C++ programs, so I suppose it cam be important to be proficient in C for C++ programmers for that reason as well.
There is a lot of C based techniques or syntax that you should know and understand, but should completely avoid using in C++.