หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'type1' followed by 'type2' is illegal (did you forget a ';'?)
Remarks
A semicolon may be missing.
Example
The following example generates C2628:
// C2628.cpp
class CMyClass {}
int main(){} // C2628 error
Possible resolution:
// C2628b.cpp
class CMyClass {};
int main(){}