在一个进程中,我们如何创建另一个与父进程完全相同的进程?

发布于 2024-11-04 11:32:13 字数 42 浏览 1 评论 0原文

在一个进程中使用 java,我们如何创建另一个与父进程完全相同的进程?

Using java in one process, how can we create another process that is an exact copy of the parent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一身骄傲 2024-11-11 11:32:13

使用纯 Java 无法做到这一点。在 C 世界中,您只需使用 fork() 系统call,但Java对此没有直接支持。

可能能够从某些调用fork() JNI 代码(或使用 JNA),但我怀疑您的平均 JVM 实现是旨在优雅地处理这个问题。

You can't do that using pure Java. In the C world you'd simply use the fork() system call, but Java has no direct support for this.

You might be able to call fork() from some JNI code (or using JNA), but I doubt that your average JVM implementation is built to handle that gracefully.

箹锭⒈辈孓 2024-11-11 11:32:13

您可以使用 Runtime.exec() 创建另一个具有相同命令行参数的进程。但是,您无法从纯 Java 中创建 C 风格的分支。人们会想象你为什么想要这样做。

我怀疑你想做的事情最好以另一种方式完成。您能否提供更多详细信息,说明您为什么要这样做?

You can create another process which has the same command line arguments with Runtime.exec(). However you cannot do a C-style fork from pure Java. It would be heard to imagine why you would want to.

I suspect what you are trying to do is best done another way. Can you give more details as you why you want to do this?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文