共用方式為


編譯器錯誤 C2673

'function' :全域函式沒有 'this' 指標

全域函式嘗試存取 this

下列範例會產生 C2673:

// C2673.cpp
int main() {
   this = 0;   // C2673
}