नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'interface' : nesting class, struct, union or interface in an interface is illegal; nesting interface in a class, struct or union is illegal
Remarks
An __interface can only appear at global scope or within a namespace. A class, struct, or union cannot appear in an interface.
Example
The following example generates C3161.
// C3161.cpp
// compile with: /c
__interface X {
__interface Y {}; // C3161 A nested interface
};