नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
nonstandard extension used: override specifier 'keyword'
Remarks
A keyword was used that is not in the C++ standard, for example, one of the override specifiers that also works under /clr. For more information, see,
Example
The following example generates C4481.
// C4481.cpp
// compile with: /W4 /c
class B {
virtual void f(unsigned);
};
class C : B {
void f(unsigned) override; // C4481
void f2(unsigned);
};