我有兩個重載的operator()
,一個接受任何類型作爲其參數並返回任何類型的函數引用。另一個採用任何類型作爲參數的函數引用,但返回void
。在我的類的實例,我得到了以下錯誤:當第一個模板參數T
是void
爲什麼我得到錯誤操作符()不能重載?
In instantiation of 'A<void, int>':
error: 'void A<T, F>::operator()(void (&)(F)) [with T = void, F = int]' cannot be overloaded
error: with 'void A<T, F>::operator()(T (&)(F)) [with T = void, F = int]'
template <typename T, typename F> struct A {
void operator()(T (&)(F)) {}
void operator()(void (&)(F)) {}
};
void f(int) {}
int main() {
A<void, int> a;
a(f);
}
這些錯誤只發生。我想知道我在做什麼錯,爲什麼我不能超載operator()
這種方式?
您已經定義了一個名爲兩個函數'操作符()'具有相同簽名。你期望什麼? –
@ n.m。當且僅當'T'是'void'時,我想使用第二個'operator()'過載。這基本上是我想要做的,但是Pubby爲我解決了這個問題。 –
出於同樣的原因,爲什麼std :: tuple有一個錯誤的構造函數規範。請參閱http://stackoverflow.com/questions/11386042/confused-by-default-constructor-description-of-stdtuple-in-the-iso-c-standar –