Compiler Error C2045
'identifier' : label redefined
The label appears before multiple statements in the same function.
The following sample generates C2045:
// C2045.cpp
int main() {
label: {
}
goto label;
label: {} // C2045
}
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
'identifier' : label redefined
The label appears before multiple statements in the same function.
The following sample generates C2045:
// C2045.cpp
int main() {
label: {
}
goto label;
label: {} // C2045
}