- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在分配一些代码时遇到问题,以熟悉流程和 fork() 系统调用。由于某种原因,当我在初始 if 语句中调用 scanf() 时,它不会立即等待输入,首先程序会继续执行下一个 scanf 并在那里等待输入。我知道有很多类似的任务,但我找不到一个能解决我的确切问题。
#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
int main(){
pid_t pid;
int pipeid[2];
pid = fork();
if(pid >0){
int x;
printf("reading x from user: ");
scanf("%d", &x);
printf("display %d",x);
wait(0);
}
else{
int y;
printf("reading y from user: ");
scanf(" %d", &y);
printf("%d",y);
printf("parent proccess %d created child proccess %d\n", getppid(),getpid());
}
}
该程序的输出如下所示
reading x from user: reading y from user 3
4
4parentproccess (Ppid) created child process (pid)
display 3
前 3 和 4 是用户输入,所以看起来程序在看到第一个之后就直接进入第二个 scanf 了?进程 ID 始终正确。
最佳答案
您在调用 scanf
之前 fork 了该进程。这为您提供了 2 个进程。然后,两个进程都调用 scanf
,一个读取“x”,另一个读取“y”。它们都在等待用户输入,但由于您有两个进程同时执行此操作,因此您会收到两条消息。
关于c - 我的第一个 scanf() 不等待输入,但仍然等待并稍后接受输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46611982/
我正在编写一个插件,有一个ajax调用向用户显示数据。 如果用户想在ajax成功时添加一些js?他可以从他的 js 脚本中做到这一点吗,比如定位这个 ajax 成功事件。 例如: $(documen
我有 html 代码,例如 - x 最初插入 div 'insert_calendar_eda_form'。 Javascript代码 calendar_eda_add
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 3 年前。 Improve this qu
我已经使用命令 sudo start myservice 启动了一个 upstart 服务。我想要一种方法,以便稍后我(或任何人)可以检查该服务是否已启动并正在运行。检查它的命令是什么? 最佳答案 找
我是一名优秀的程序员,十分优秀!