5

bilmek bu kod derleme yöntemiyle elde edersiniz:C++ 11: isterim Evrensel infaz

// test3.cpp                                              

#include <iostream> 

using namespace std; 

template<typename R, typename... rArgs> 
R universal_exer(R(*f)(rArgs...), rArgs... args) 
{ 
    return (*f)(forward<rArgs>(args)...); 
} 

int addition(int a) 
{ 
    return a; 
} 

int addition(int a, int b) 
{ 
    return a + b; 
} 

template<typename... Args> 
int addition(int a, int b, Args... args) 
{ 
    return a + b + addition(args...); 
} 

int main() 
{ 
    cout << universal_exer(&addition, 1) << endl; 
} 

Hata mesajı (gcc 4.7.2):

test3.cpp: In function 'int main()': 
test3.cpp:31:40: error: no matching function for call to 'universal_exer(<unresolved overloaded function type>, int)' 
test3.cpp:31:40: note: candidate is: 
test3.cpp:8:3: note: template<class R, class ... rArgs> R universal_exer(R (*)(rArgs ...), rArgs ...) 
test3.cpp:8:3: note: template argument deduction/substitution failed: 
test3.cpp:31:40: note: couldn't deduce template parameter 'R' 

Doğru aşırı gösterebilir nasıl addition işlevinin?

+1

Cast bunu (aşırı için yardımcı olur) ile ana değiştirin veya bir lambda kullanmak, bir yerlerde bir dupe var. – inf

+0

bu 'cout deneyin << universal_exer (static_cast (ve ilave), 1) << endl; ' [Örnek] (https://godbolt.org/g/fLMZRm) – Nyufu

cevap

5

sağ işaretçi

int main() 
{ 
    int (*f)(int) = &addition; 
    cout << universal_exer(f, 1) << endl; 

    // or alternatively 
    // cout << universal_exer((int (*)(int))addition, 1) << endl; 
} 
+4

Spesifik olarak, Çözülmemiş aşırı yüklenmiş fonksiyon tipine çözüm, * hangi * aşırı fonksiyonun çözüleceğidir. Burada yapılıyor. –