[問題] fork的問題

看板C_and_CPP (C/C++)作者 (156941)時間16年前 (2009/02/09 15:57), 編輯推噓5(5012)
留言17則, 3人參與, 最新討論串1/2 (看更多)
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> int main(void) { char b[200]; pid_t pid; char *bb[]={"ls","pwd","cal","exit"}; int i,n; n=strlen(b)-1; while(b!="exit\n") { if((pid=fork())<0) printf("fork error"); if(pid==0) { printf("commond:\n\"ls\",\"pwd\",\"cal\",\"exit\" "); fgets(b,200,stdin); fflush(stdin); for(i=0;i<4;i++) { if(strncmp(b,bb[i],n)==0) execlp(bb[i],bb[i],0); } } else wait(); } return 0; } 問題在不管我輸入捨到fgets他都只會幫我執行 ls的能力 不知道為什麼? 請知道的大大幫解一下 謝謝... -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 118.161.191.212 ※ 編輯: play2004 來自: 118.161.191.212 (02/09 16:00)

02/09 16:00, , 1F
你在 strlen(b) 時, b 的值還不知道是啥
02/09 16:00, 1F

02/09 16:01, , 2F
還有 b != "exit" 請改用 strcmp
02/09 16:01, 2F

02/09 18:03, , 3F
LEDIA先生 用你說的第二行的方法會產生記憶體區段錯誤說
02/09 18:03, 3F

02/09 20:42, , 4F
if (strcmp(b, "exit")!=0) ?!
02/09 20:42, 4F

02/09 20:43, , 5F
如果你也是在 fgets 前 strcmp, 有錯並不意外 ^^|
02/09 20:43, 5F

02/09 23:23, , 6F
喔喔 謝謝 能解釋一下記憶體區段錯誤嗎?
02/09 23:23, 6F

02/10 00:38, , 7F
strcmp 並不檢查 b 陣列大小, 在 b 尚未以 fgets 給值之前
02/10 00:38, 7F

02/10 00:38, , 8F
裡面的值是什麼是不可預期的
02/10 00:38, 8F

02/10 00:38, , 9F
因此 strcmp 就以一般零值當作結尾的條件來看待 b
02/10 00:38, 9F

02/10 00:39, , 10F
當 b 的範圍中沒有零值讓 strcmp 的檢查在合法範圍之內就停
02/10 00:39, 10F

02/10 00:40, , 11F
下來的話, 就有可能發生記憶體區段錯誤
02/10 00:40, 11F

02/10 00:40, , 12F
舉一個 strcmp 的實作例子
02/10 00:40, 12F

02/10 00:40, , 13F
while (*s1 == *s2++)
02/10 00:40, 13F

02/10 00:40, , 14F
if (*s1++ == 0)
02/10 00:40, 14F

02/10 00:41, , 15F
return (0);
02/10 00:41, 15F

02/10 09:58, , 16F
所以就char b[200]=""; 應該就可以了吧 我猜
02/10 09:58, 16F

02/10 15:06, , 17F
謝謝大大解說^ ^
02/10 15:06, 17F
文章代碼(AID): #19Z-820x (C_and_CPP)
討論串 (同標題文章)
文章代碼(AID): #19Z-820x (C_and_CPP)