Compiler Error C2673
'function' : global functions do not have 'this' pointers
A global function tried to access this
.
The following sample generates C2673:
// C2673.cpp
int main() {
this = 0; // C2673
}
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
'function' : global functions do not have 'this' pointers
A global function tried to access this
.
The following sample generates C2673:
// C2673.cpp
int main() {
this = 0; // C2673
}