नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier' : overloaded member function not found in 'class'
Remarks
No version of the function is declared with the specified parameters. Possible causes:
Wrong parameters passed to function.
Parameters passed in wrong order.
Incorrect spelling of parameter names.
Example
The following example generates C2511:
// C2511.cpp
// compile with: /c
class C {
int c_2;
int Func(char *, char *);
};
int C::Func(char *, char *, int i) { // C2511
// try the following line instead
// int C::Func(char *, char *) {
return 0;
}