नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier1' : uses 'identifier2', which is being defined
Remarks
A class or structure (identifier2) is declared as a member of itself (identifier1). Recursive definitions of classes and structures are not allowed.
Example
The following example generates C2460:
// C2460.cpp
class C {
C aC; // C2460
};
Instead, use a pointer reference in the class.
// C2460.cpp
class C {
C * aC; // OK
};