नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier' : 'static' should not be used on member functions defined at file scope
Remarks
Static member functions should be declared with external linkage.
Example
The following example generates C2724:
// C2724.cpp
class C {
static void func();
};
static void C::func(){} // C2724
// try the following line instead
// void C::func(){}