此標準為main 函數定義了兩個有效簽章:
<code class="cpp">int main(); int main(int, char*[]);</code>
This文章檢查以下簽名是否會合法接受:
<code class="cpp">int main(const unsigned int, const char* const* argv);</code>
重載注意事項
修改參數類型以包含unsigned 和const 限定符是否會改變
標準解釋
C 98 標準規定main:
編譯器可用性
雖然標準不要求實現接受接受此專用主簽章的環境,但它允許它們這樣做。
結論
因此,修改後的簽章int main(const unsigned int, const char* const* argv) 被一致的編譯器視為main 的有效變體,這證明了標準在適應實現方面的靈活性-其實施的具體方面。
以上是`int main(const unsigned int, const char* const* argv);` 是 C 主函數的有效簽章嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!