नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
syntax error : 'type' should be preceded by 'token'
Remarks
The compiler expected token and found type instead.
This error may be caused by a missing closing brace, right parenthesis, or semicolon.
C2144 can also occur when attempting to create a macro from a CLR keyword that contains a white space character.
You may also see C2144 if you are trying to do type forwarding. See Type Forwarding (C++/CLI) for more information.
Examples
The following example generates C2144, and shows a way to fix it:
// C2144.cpp
// compile with: /clr /c
#define REF ref
REF struct MyStruct0; // C2144
// OK
#define REF1 ref struct
REF1 MyStruct1;
The following example generates C2144, and shows a way to fix it:
// C2144_2.cpp
// compile with: /clr /c
ref struct X {
property double MultiDimProp[,,] { // C2144
// try the following line instead
// property double MultiDimProp[int , int, int] {
double get(int, int, int) { return 1; }
void set(int i, int j, int k, double l) {}
}
property double MultiDimProp2[] { // C2144
// try the following line instead
// property double MultiDimProp2[int] {
double get(int) { return 1; }
void set(int i, double l) {}
}
};