หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : redefinition; different basic types
Remarks
The identifier is already declared.
Example
The following example generates C2371:
// C2371.cpp
int main() {
int i;
float i; // C2371, redefinition
float f; // OK
}