warning: the `gets' function is dangerous and should not be used.(轉)

來源:互聯網
上載者:User

標籤:filename   字串   div   鍵盤   char   size   匹配   linu   htm   

今天在LINUX下編譯C程式時,出現了:
warning: the `gets‘ function is dangerous and should not be used.

這個warning。

百度之後,得知

問題出在程式中使用了 gets  ,Linux 下gcc編譯器不支援這個函數,解決辦法是使用 fgets

1 fgets()函數的基本用法為:2 3 fgets(char * s,int size,FILE * stream);//eg:可以用fgets(tempstr,10,stdin)//tempstr 為char[]變數,10為要輸入的字串長度,stdin為從標準終端輸入。

 

 1 /*   代碼實現     */ 2  3 #include <stdio.h> 4 int main ( ) { 5  6    char name[20]; 7  8    printf("\n 輸入任一字元 : "); 9 10    fgets(name, 20, stdin);//stdin 意思是鍵盤輸入11 12    fputs(name, stdout); //stdout 輸出13 14    return 0;15 }

根據以上改動後,果然沒有了warning,但是調試了n久的一個程式,確實怎麼也沒有正確結果,最後step跟蹤,才發現了問題所在!那就是:
gets從終端讀入是的字串是用\0結束的,而fgets是以\n結束的(一般輸入都用ENTER結束),然後strcmp兩者的時候是不會相等的!

所以建議大家還是繼續讓它warning吧。。為了正確性!


這個問題主要應該是因為linux 和 windows的檔案在分行符號上編碼不一樣導致的,linux的換行是\0,windows的換行是\13\0,是兩個字元。

但是的檔案應該是在windows下編譯的,所以導致會出現兩字元不匹配。建議可以在linux終端下,利用dos2unix filename,來將分行符號處理一下,應該就OK了

 

參考:

http://hi.baidu.com/zojoyo/blog/item/134874c89b9b94107f3e6fc3.html

 

http://hi.baidu.com/laoniaoyiren/blog/item/95a0862b291c5124d42af1cd.html/cmtid/e89b2c1fd0c330fb1ad57625

warning: the `gets' function is dangerous and should not be used.(轉)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.