5

我有一个模板功能

template <class T>
void foo() {
  // Within this function I need to create a new T
  // with some parameters. Now the problem is I don't
  // know the number of parameters needed for T (could be
  // 2 or 3 or 4)
  auto p = new T(...);
}

我该如何解决这个问题?不知何故,我记得看到了带有(...,...)之类的输入的函数?

4

2 回答 2

6

您可以使用可变参数模板:

template <class T, class... Args>
void foo(Args&&... args){

   //unpack the args
   T(std::forward<Args>(args)...);

   sizeof...(Args); //returns number of args in your argument pack.
}

这个问题在这里有更多关于如何从可变参数模板中解包参数的细节。这里的这个问题也可能提供更多信息

于 2013-03-04T17:50:33.060 回答
2

这是基于可变参数模板为您工作的 C++11 示例:

#include <utility> // for std::forward.
#include <iostream> // Only for std::cout and std::endl.

template <typename T, typename ...Args>
void foo(Args && ...args)
{
    std::unique_ptr<T> p(new T(std::forward<Args>(args)...));
}

class Bar {
  public:
    Bar(int x, double y) {
        std::cout << "Bar::Bar(" << x << ", " << y << ")" << std::endl;
    }
};

int main()
{
    foo<Bar>(12345, .12345);
}

希望能帮助到你。祝你好运!

于 2013-03-04T17:59:22.167 回答