已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
'identifier' : 'const/volatile' 'this' 指標對於建構函式/解構函式不合法
建構函式和解構函式宣告為 const 或 volatile。 這是不允許的。
下列範例會產生 C2583:
// C2583.cpp // compile with: /c class A { public: int i; A() const; // C2583 // try the following line instead // A(); };