หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'keyword' keyword is not permitted in cast
Remarks
The keyword is invalid in a cast.
Example
The following example generates C2736:
// C2736.cpp
int main() {
return (virtual) 0; // C2736
// try the following line instead
// return 0;
}