已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
'type': 樣板引數的型別不可以包含 'auto'
指定的樣板引數型別中不可以使用 auto 關鍵字。
下列範例會產生 C3539 錯誤。
// C3539.cpp // Compile with /Zc:auto template<class T> class C{}; int main() { C<auto> c; // C3539 return 0; }
auto Keyword