gpt4 book ai didi

c++ - 使用 `fork()` 反转字符串

转载 作者:行者123 更新时间:2023-11-28 01:42:43 27 4
gpt4 key购买 nike

我正在尝试使用 fork() 在 C++ 中反转字符串,这样每个进程最多打印一个字符。我的想法是,在打印每个字符后,我fork进入一个新进程,结束父进程,然后继续。这是我的代码:

#include <string>
#include <iostream>
#include <unistd.h>

/*
Recursively print one character at a time,
each in a separate process.
*/
void print_char(std::string str, int index, pid_t pid)
{
/*
If this is the same process,
or the beginning of the string has been reached, quit.
*/
if (pid != 0 || index <= -1)
return;

std::cout << str[index];
if (index == 0)
{
std::cout << std::endl;
return;
}
print_char(str, index-1, fork());
}

int main(int argc, char** argv)
{
std::string str(argv[1]);
print_char(str, str.length()-1, 0);
}

但是,当使用参数“hey”测试代码时,它会打印“yeheyy”。我对 fork() 的理解是,它创建了一个带有内存空间拷贝的重复进程,每当我在脑海中“遍历”代码时,它似乎应该可以工作,但我无法弄清楚我的逻辑在哪里失败。

最佳答案

看起来,你的代码没问题,但是你在cout上遇到了问题。

尝试只改变输出行

std::cout << str[index];

std::cout << str[index] << std::flush;

尝试了一下,对我有用。

关于c++ - 使用 `fork()` 反转字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46519710/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com