编写一个程序,程序中创建一个子进程,然后父子进程各自独立运行。

2024-12-05 01:51:58
推荐回答(4个)
回答1:

#include
#include
#include

#define BUFSIZE 10

int main(void)
{
char ch,dh,eh;
int p[2];//文件描述符
pid_t childpid;

if(pipe(p) == -1)//创建管道
{
perror("pipe call");
return -1;
}
if((childpid = fork()) == -1)//创建子进程
{
perror("fork call");
return -1;
}
if(childpid!=0)//父进程
{
close(p[0]);//关闭读文件
do
{
ch = getchar();
write(p[1],&ch,1);//向管道写
}while(ch!='x');//遇到'x'则结束
}
else if(childpid==0)//子进程
{
close(p[1]);//关闭写文件
while(1)
{
read(p[0],&dh,1);//从管道读
if(dh == 'x')
{
printf("\n");
return 0;
}
else if(dh>='a'&&dh<='z')
{
eh = (char)((int)dh - 32);//转化成大写输出
printf("%c",eh);
}
else {
printf("%c",dh);
}
}

}
}

回答2:

比如有一个下拉框定义如下:

那么可以利用以下方法来获取值:
方法一:
var ddl = document.getElementById("ddlBusCode")

var index = ddl.seletedIndex;
var Value = ddl.options[index].value;
var Text = ddl.options[index].text;
方法二:
var aaa=ddlBusCode.options[this.selectedIndex].value;

回答3:

windows还是linux?

回答4:

同求