Eclipse:实时编辑和运行代码

发布于 2024-09-28 18:55:28 字数 131 浏览 5 评论 0原文

在 Eclipse 中编辑 Java 代码时,我可以在代码运行时以各种方式修改代码,并使这些更改生效,而无需重新启动程序。

该功能背后的技术是什么?它是 Eclipse 的一部分,还是可以使用命令行工具和 JDK 附带的工具来完成?

When editing Java code in Eclipse I can modify the code while it's running in various ways and have those changes take effect without restarting my program.

What is the technology underlying this feature? Is it part of Eclipse, or is it something I can do with the command line tools and the tools that come with the JDK?

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

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

发布评论

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

评论(2

南烟 2024-10-05 18:55:28

此功能通常称为“热代码替换”,并且是 在 Java 1.4 中引入 - 它是 Java 虚拟机调试接口和各种 API 的一部分。

所以它不是 Eclipse 特有的,但我认为 JDK 附带的任何命令行工具都不支持它。

This feature is usually called "hot code replace" and was introduced in Java 1.4 - it's part of the Java Virtual Machine Debug Interface and various APIs on top of that.

So it's not specific to Eclipse, but I don't think any of the command line tools that come with the JDK support it.

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