2
好的,這是一個非常困難的問題。根據給定的一組索引獲取參數包的子集
我希望能夠通過選擇給定的一組有效索引的參數類型來獲取參數包的子集,然後使用該參數包作爲函數的參數列表。 IE:
template <size_t... indices_t>
void func(pack_subset<indices_t..., args_t...>); //incorrect syntax,
//not sure how else to write this
//args_t is predetermined, this
//function is a static member of
//a variadic class template
//For a parameter pack <float, double> and index set 0
void func(float); // <- result of template
我可以得到一個單一的索引的類型,但一組索引是有點困難,特別是當該集合是一個可變尺寸的。對於語法是:
pack_index<size_t index_t, typename... args>::type
也許我可以串一串的這些結合在一起,但我不知道如何去擴大indices_t讓我得到列表中的每個值pack_index。
啊,你能解釋一下在這種情況下使用關鍵字?我從來沒有見過這種方式。 – NmdMystery
@NmdMystery:和'typedef std :: tuple <...>類型'一樣;'。 C++新增功能11。 –
雖然結構模板編譯,但我在實現這個時遇到了一些麻煩。這是我有:'template無效func(選擇器,indices_t ...>)'這也編譯,我只是不知道如何提供參數,因爲代碼完成是不是真的幫助我在Visual Studio –
NmdMystery