c++ pointer to non-static member functions
问题 I have read many posts and answers about pointers to non-static member functions, but none looks able to solve my problem. So I have created a short example to replicate my issue here: even if this example could be "solved" in different ways, for the final software it is important to keep the structure like in the example, thanks. This is the header of the class "Funcs.h": class Funcs { private: double a = 1, b = 2; public: Funcs(); ~Funcs(); double Fun1(double X); double solver(double X0);