您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)C語言中freopen函數(shù)的使用方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
freopen 函數(shù)說明 函數(shù)名: freopen 功 能: 實現(xiàn)數(shù)據(jù)重定向到文件中 用 法: FILE *freopen(const char *filename, const char *mode, FILE *stream); 返回值: 成功,則返回文件指針;失敗,返回NULL(可以不使用它的返回值) 7 #include <stdio.h> int main(void) { /* redirect standard output to a file */ if (freopen("OUTPUT.FIL", "w", stdout) == NULL) { fprintf(stderr, "error redirecting\ stdout\n"); } /* this output will go to a file */ printf("This will go into a file."); /* close the standard output stream */ fclose(stdout); return 0; }
freopen函數(shù)通過實現(xiàn)標準I/O重定向功能來訪問文件,而fopen函數(shù)則通過文件I/O來訪問文件。
freopen函數(shù)在算法競賽中常被使用。在算法競賽中,參賽者的數(shù)據(jù)一般需要多次輸入,而為避免重復(fù)輸入,使用重定向。
freopen函數(shù)在調(diào)試中非常有用:
freopen("debug\\in.txt","r",stdin)的作用就是把標準輸入流stdin重定向到debug\\in.txt文件中,這樣在用scanf或是用cin輸入時便不會從標準輸入流讀取數(shù)據(jù),而是從in.txt文件中獲取輸入。
只要把輸入數(shù)據(jù)事先粘貼到in.txt,調(diào)試時就方便多了。
類似的,freopen("debug\\out.txt","w",stdout)的作用就是把stdout重定向到debug\\out.txt文件中,這樣輸出結(jié)果需要打開out.txt文件查看。
需要說明的是:
1. 在freopen("debug\\in.txt","r",stdin)中,將輸入文件in.txt放在文件夾debug中,文件夾debug是在VC中建立工程文件時自動生成的調(diào)試文件夾。如果改成freopen("in.txt","r",stdin),則in.txt文件將放在所建立的工程文件夾下。in.txt文件也可以放在其他的文件夾下,所在路徑寫正確即可。
2. 可以不使用輸出重定向,仍然在控制臺查看輸出。 3. 程序調(diào)試成功后,提交到oj時不要忘記把與重定向有關(guān)的語句刪除。
以上就是C語言中freopen函數(shù)的使用方法,詳細使用情況還需要大家自己親自動手使用過才能領(lǐng)會。如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。