运行时环境

发布于 2024-12-20 21:48:13 字数 112 浏览 1 评论 0 原文

我想知道系统级别(操作系统)的运行时环境到底是什么。它是否与运行时所需的资源或其他什么有关?我在论坛上看到了一个类似的问题,解释了它是如何在java中使用的。我对Java一无所知,所以我从解释中得到的信息很少。

I wanted to know what exactly is run time environment at system level(operating system). Is it somehow related to the resources required at run time or something else? I saw a similar question posted on a forum, explaining how it is used in java. I have no knowledge of Java, so very little I could derive from the explanation.

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

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

发布评论

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

评论(2

还在原地等你 2024-12-27 21:48:13

运行时环境:我将其解释为一个平台,它充当程序和操作系统之间的传输器或通信通道。

JRE 就是一个例子。 Java 运行时环境

它包含运行 .jar包装的 .jar(.exe) 所需的所有库,以便在任何系统上顺利运行无需安装 JDK(Java 开发工具包)。

你可以通过这里 开始理解。

Runtime Environment : i'll explain it as a platform which works as a trasporter or communication channel between your program and Operating System.

JRE is an example of that. Java Runtime Environment

It contains all the required libraries to run your .jar or wrapped .jar (an .exe) to run smothly on any system without having JDK (Java Development Kit) installed.

you can go through here for starting understanding.

暮倦 2024-12-27 21:48:13

Look first at wikipedia page on runtime environments

For Java, it is usually the implementation of the JVM whose specification is here; it notably contains the garbage collector, the class loader and the JIT

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