我的教授在 C 中展示了以下示例:
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
int main() {
pid_t pid;
/* fork another process */
pid = fork();
if (pid < 0) { /* error occurred */
fprintf(stderr, "Fork Failed");
return 1;
}
else if (pid == 0) { /* child process */
execlp("/bin/ls", "ls", NULL);
}
else { /* parent process */
/* parent will wait for the child */
wait (NULL);
printf("Child Completed its execution\n");
}
return 0;
}
我编译并运行它。我在这段代码中看到了一个奇怪的行为:
打印“ls”程序/命令的结果,它在 else if 条件中,但也打印了字符串“Child Completed its execution\n”,它在 else 中。
这不是一种奇怪的行为吗?