我有這樣一段代碼:海合會GCC元組「無效的使用不完全類型的」
#include <tuple>
#include <utility>
#include <iostream>
template<int ...> struct seq {};
template<int N, int ...S> struct gens : gens<N - 1, N - 1, S...> {};
template<int ...S> struct gens<0, S...> { typedef seq<S...> type; };
template<typename ValueType>
bool get_value(ValueType& value, int index) {
//just for test
value = 100;
return true;
}
template<>
bool get_value(const char*& value, int index) {
//just for test
value = "Hello?";
return true;
}
template<int index, std::size_t remaining, typename... Args>
struct arg_helper {
inline static bool
get_args(std::tuple<Args...>& t) {
if (get_value(std::get<index>(t), index)) {
return arg_helper<index + 1, remaining - 1, Args...>::get_args(t);
}
else {
return false;
}
return true;
}
};
template<std::size_t index, typename... Args>
struct arg_helper<index, 0, Args... > {
inline static bool
get_args(std::tuple<Args...>& t) {
return true;
}
};
template<typename R, typename... Args, int ...S>
void callFunc(R(func)(Args...), seq<S...>, std::tuple<Args...>& tup) {
func(std::get<S>(tup) ...);
}
template<typename R, typename... Args>
void TestFunc(R(func)(Args...)) {
std::tuple<Args...> tup;
arg_helper<0, sizeof ...(Args), Args...>::get_args(tup);
callFunc(func, typename gens<sizeof...(Args)>::type(), tup);
}
static void FuncA(int test, const char* str) {
std::cout << "test func" << test << str << std::endl;
}
int main() {
TestFunc(FuncA);
return 0;
}
它可以在MSVC2013運行,但編譯器錯誤就行了:
arg_helper<0, sizeof ...(Args), Args...>::get_args(tup);
我是什麼做錯了?
BTW:我知道iterate over tuple 它可以在GCC運行,但對於MSVC2013
的就是你得到完整的錯誤消息? – NathanOliver
@NathanOliver http://coliru.stacked-crooked.com/a/e6e3be97c63bac4c可以在這裏試試。 – ejkoy
Slighty偏離主題,但:確保[使用模板專業化時要小心](http://www.gotw.ca/publications/mill17.htm),因爲它們不會超載。假設你要實現另一個重載'bool get_value(ValueType&value,int index)',比如'bool get_value(ValueType *&value,int index)'的模板函數。對於調用帶有第一個參數'char *'的'get_value',我們希望在重載解析中選擇專門化的'bool get_value(const char *&value,int index)',但取決於順序重載的定義的發生...... – dfri