当前位置: 技术问答>linux和unix
linux后台运行程序的问题
来源: 互联网 发布时间:2016-07-01
本文导语: #include int main() { int a; scanf("%d", &a); printf("%dn", a); return 0; } 这样一个程序,有输入。。编译生成test 如果在后台运行的话:./test & 进程会马上结束,为什么?? root@proudboy-desktop:~/Desktop# ./test & [3] 12066 [3]+ ...
#include
int main()
{
int a;
scanf("%d", &a);
printf("%dn", a);
return 0;
}
这样一个程序,有输入。。编译生成test
如果在后台运行的话:./test &
进程会马上结束,为什么??
root@proudboy-desktop:~/Desktop# ./test &
[3] 12066
[3]+ Stopped ./test
int main()
{
int a;
scanf("%d", &a);
printf("%dn", a);
return 0;
}
这样一个程序,有输入。。编译生成test
如果在后台运行的话:./test &
进程会马上结束,为什么??
root@proudboy-desktop:~/Desktop# ./test &
[3] 12066
[3]+ Stopped ./test
|
因为你的程序运行完毕!!
后台是没有标准输入输出的。
scanf("%d", &a); 会立即接收到输入,不过是未定义的。
printf("%dn", a);
后台是没有标准输入输出的。
scanf("%d", &a); 会立即接收到输入,不过是未定义的。
printf("%dn", a);
|
你这个程序一执行马上就结束了 当然会出现你说的情况了