หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'method_name' : interface methods cannot take a variable argument list
Remarks
An interface method cannot take a variable argument list.
Example
For example, the following interface definition generates C3120:
// C3120.cpp
__interface A {
int X(int i, ...); // C3120
};
int main(void) { return(0); }