已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
'type' :存取宣告只能套用至基類成員
未正確指定using宣告。
下列範例會產生 C3210。
// C3210.cpp // compile with: /c struct A { protected: int i; }; struct B { using A::i; // C3210 }; struct C : public A { using A::i; // OK };
此頁面對您有幫助嗎?