หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'operator': cannot allocate 'type' object
An operator was passed an invalid type.
The following sample generates C2469:
// C2469.cpp
int main() {
int *i = new void; // C2469
int *i = new int; // OK
}