已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
參數 'number' 宣告不同
使用不同的參數清單,第二次宣告 C 函式。 C 不支援多載函式。
下列範例會產生 C2192:
// C2192.c // compile with: /Za /c void func( float, int ); void func( int, float ); // C2192, different parameter list void func2( int, float ); // OK
此頁面對您有幫助嗎?