开发平台(Platform): (Ex: Win10, Linux, ...)
没关系
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
g++
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
无
问题(Question):
各位大神安安
小弟我最近要想要写一个可以吃各种函数的牛顿法
无奈学艺不精想不出厉害的办法
最后做了这样的尝试
template<typename Fprt>
class FUNCTIONAL
{
public:
Fptr FUNC;
FUNCTIONAL(Fptr ptr):FUNC(ptr){}
auto operator()(auto U){return FUNC(U)}
};
我的问题是这样的
能不能从Fptr里面提取资讯置换掉call operator的两个auto?