إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'identifier': 'modifier' not permitted on data declarations
Remarks
The friend, virtual, and inline modifiers cannot be used for data declarations.
Example
The following example generates C2433:
// C2433.cpp
int main()
{
virtual int i; // C2433
}