次の方法で共有


コンパイラ エラー C2244

'identifier': 関数の定義を既存の宣言と合致させることができませんでした

単項の + 演算子が、かっこを持たない関数呼び出しの前で使われました。

このエラーは、C++ プロジェクトでのみ発生します。

次の例では C2244 が生成されます:

// C2244.cpp
int func(char) {
   return 0;
}

int func(int) {
   return 0;
}

int main() {
   +func;   // C2244
}

C2244 は、クラス テンプレートのメンバー関数に無効な関数シグネチャが使用されている場合にも発生する可能性があります。

// C2244b.cpp
// compile with: /c
template<class T>
class XYZ {
   void func(T t);
};

template<class T>
void XYZ<T>::func(int i) {}   // C2244 wrong function signature
// try the following line instead
// void XYZ<T>::func(T t) {}

C2244 は、メンバー関数テンプレートに無効な関数シグネチャが使用されている場合にも発生する可能性があります。

// C2244c.cpp
// compile with: /c
class ABC {
   template<class T>
   void func(int i, T t);
};

template<class T>
void ABC::func(int i) {}   // C2244 wrong signature
// try the following line instead
// void ABC::func(int i, T t) {}

関数テンプレートを部分的に特殊化することはできません。

// C2244d.cpp
template<class T, class U>
class QRS {
   void func(T t, U u);
};

template<class T>
void QRS<T,int>::func(T t, int u) {}   // C2244