C庫函式 int fflush(FILE *stream)流重新整理輸出緩衝區。
以下是fflush() 函式的宣告。
int fflush(FILE *stream)
stream -- 這是一個檔案物件,它指定了一個緩衝的流指標。
這個函式返回零值成功。如果出現錯誤,則返回EOF並設定錯誤指示燈(即feof)。
下面的例子顯示 fflush() 函式的用法。
#include <stdio.h> int main() { char buff[1024]; memset( buff, '', sizeof( buff )); fprintf(stdout, "Going to set full buffering on "); setvbuf(stdout, buff, _IOFBF, 1024); fprintf(stdout, "This is tw511.com "); fprintf(stdout, "This output will go into buff "); fflush( stdout ); fprintf(stdout, "and this will appear when programm "); fprintf(stdout, "will come after sleeping 5 seconds "); sleep(5); return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果。在這裡,程式保持緩衝到輸出 buff,直到它面臨的第一次呼叫到 fflush()後,再次開始緩衝輸出,,並最終睡5秒鐘。傳送剩餘的輸出到標準輸出之前。
Going to set full buffering on This is tw511.com This output will go into buff and this will appear when programm will come after sleeping 5 seconds