Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
'_alloca' cannot be called from within a catch block
Remarks
This error occurs when you use a call to _alloca from within a catch block.
Example
The following example generates C3204:
// C3204.cpp
// compile with: /EHsc
#include <malloc.h>
void ShowError(void)
{
try
{
}
catch(...)
{
_alloca(1); // C3204
}
}