所以我一直在研究一个函数类,默认情况下,我可以这样做,并且它可以工作:
int main(){
function f("x^2+1");
cout<<f(3)<<endl;
return 0;
}
&#34;假设正确的包含和命名空间&#34;
无论如何,我希望能够传递多个变量,甚至说明这些变量是什么,比如;
function f("x^2+y^2",x,y); // it doesn't really matter if it's x, 'x', or "x"
cout<<f(3,4)<<endl; // input 3 as x, and 4 as y
我相当肯定我可以使用可变参数函数为构造函数找出一些东西,甚至可以正确解决,但是有没有办法强制operator()参数正好接受2个值?
我只关注可变函数,因为它们是我在c ++中看到的第一个可以接受多个参数的东西,所以如果以其他方式做到这一点更好,我全都为了它。
答案 0 :(得分:4)
您可以使用static_assert
来限制可变参数的数量。
template <typename ... Args>
void operator()(Args&&... args)
{
static_assert(sizeof...(Args) <= 2, "Can deal with at most 2 arguments!");
}
或者您可以使用enable_if
template <typename ... Args>
auto operator()(Args&&... args) -> std::enable_if_t<sizeof...(Args) <= 2>
{
}
答案 1 :(得分:1)
template<class T>
using double_t=double;
template<class...Ts>
using nfun=std::function<double(double_t<Ts>...)>;
template<class...C>
nfun<C...> func(const char*,C...c);
将返回n-ary std::function
等于&#39;变量&#39; func
的参数。
因此func("x^2+y",'x','y','z')
将返回std::function<double(double,double,double)>
作为示例。