หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'operator' : illegal for 'class-key'
Remarks
The operator was not defined for the structure or union. This error is only valid for C code.
Example
The following example generates C2088 three times:
// C2088.c
struct S {
int m_i;
} s;
int main() {
int i = s * 1; // C2088
struct S s2 = +s; // C2088
s++; // C2088
}