1. 程式人生 > >c/c++ 從鍵盤流中讀入字串的函式:gets(str);

c/c++ 從鍵盤流中讀入字串的函式:gets(str);

****本文摘自西電論壇

標頭檔案:#include <stdio.h>


gets()函式用於從緩衝區中讀取字串,其原型如下:
    char *gets(char *string);

gets()函式從流中讀取字串,直到出現換行符或讀到檔案尾為止,最後加上NULL作為字串結束。所讀取的字串暫存在給定的引數string中。

【返回值】若成功則返回string的指標,否則返回NULL。

注意:由於gets()不檢查字串string的大小,必須遇到換行符或檔案結尾才會結束輸入,因此容易造成快取溢位的安全性問題,導致程式崩潰,可以使用fgets()代替。

【例項】請看下面一個簡單的例子。
#include <stdio.h>
int main(void)
{
    char str[10];
    printf("Input a string.\n");
    gets(str);
    printf("The string you input is: %s",str);    //輸出所有的值,注意a
}
如果輸入123456(長度小於10),則輸出結果為:
Input a string.
123456↙
The string you input is:123456

如果輸入12345678901234567890(長度大於10),則輸出結果為:
Input a string.
12345678901234567890↙
The string you input is:12345678901234567890
同時看到系統提示程式已經崩潰。

如果不能正確使用gets()函式,帶來的危害是很大的,就如上面我們看到的,輸入字串的長度大於緩衝區長度時,並沒有截斷,原樣輸出了讀入的字串,造成程式崩潰。

考慮到程式安全性和健壯性,建議用
fgets()來代替gets()。

如果你在GCC中使用gets(),編譯無法通過,會提示:
the 'gets' function is dangerous and shout not be used.