หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'function' : no overloaded function takes number parameters
Remarks
Possible causes:
Incorrect actual parameters in function call.
Missing function declaration.
Example
The following example generates C2661:
// C2661.cpp
void func( int ){}
void func( int, int ){}
int main() {
func( ); // C2661 func( void ) was not declared
func( 1 ); // OK func( int ) was declared
}