您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“system函數怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“system函數怎么用”這篇文章吧。
system函數是一個和操作系統緊密相關的函數,用戶可以使用它在自己的程序中調用系統提供的各種命令。函數原型如下:
#include<stdlib.h> int system(const char *cmdstring);
system調用fork產生子進程,由子進程來調用/bin/sh-cmdstring來執行參數cmdstring字符串所代表的命令,此命令執行完成后隨即返回調用的進程。在調用system期間SIGCHLD信號會被暫時擱置,SIGINT和SIGQUIT信號則會被忽略。
如果參數cmdstring是一個空指針NULL,則僅當命令處理程序可用時,system返回非0值,這一特征可以決定在一個給定的操作系統上是否支持system函數,當返回0時,表示system無效。
例如:
#include<stdlib.h> #include<stdio.h> void main() { int status; if((status=system(NULL))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); if((status=system("date"))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); if((status=system("invalidcommand"))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); if((status=system("who;exit 44"))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); }
運行結果:
exit status=1 Wed Mar 22 09:20:45 CST 2017 exit status=0 sh: invalidcommand: command not found exit status=32512 root pts/0 2017-03-22 09:07 (124.152.7.168) exit status=11264
在第一次調用system是參數為空指針,返回結果1,說明在該系統下system是可用的。
第二次調用system時,參數為date,執行成功。
第三次調用system時,參數為一個非法字符串,system返回值為shell的終止狀態32512(命令出錯)。
第四次調用system時,使用who命令顯示登錄到系統的當前用戶情況,exit是退出當前的shell,可以看到system返回112674,成功執行。
以上是“system函數怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。