我正在尝试做这样的事情:
template <class ... Required>
class Base
{
template <class First, class ... Rest>
void bar(First f, Rest ... r)
{
[...]
return bar(r...);
}
void bar()
{
return;
}
public:
template <class ... Optional>
void foo(Required ... r, Optional ... o)
{
[...]
bar(r...); //separate the required from the optional
bar(o...);
}
};
class Child : Base<Foo1, Foo2>
{
public:
Child()
{
[...]
foo(foo1,foo2,foo3);
}
}
但是第一次bar
调用接收所有参数而不是只接收参数Required
,第二次调用没有接收任何参数。我错过了关于多个可变参数的东西吗?编译器不应该知道那Required...
是Foo1,Foo2
,其余的是Optional
吗?