إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'operator' : illegal operand 'nullptr'
Remarks
nullptr cannot be an operand.
Example
The following example generates C2389:
// C2389.cpp
// compile with: /clr
int main() {
throw nullptr; // C2389
}