नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier' : cannot define a type in a 'new-expression'
Remarks
You cannot define a type in the operand field of the new operator. Put the type definition in a separate statement.
Example
The following example generates C2462:
// C2462.cpp
int main()
{
new struct S { int i; }; // C2462
}