在过去,我一直使用c++作为编程语言。我知道用c++写的代码要经过一个编译过程,直到它成为目标代码“机器代码”。

我想知道Java在这方面是如何工作的。用户编写的Java代码是如何被计算机运行的?


当前回答

报价来自:https://blogs.oracle.com/ask-arun/entry/run_your_java_applications_faster

Application developers can develop the application code on any of the various OS that are available in the market today. Java language is agnostic at this stage to the OS. The brilliant source code written by the Java Application developer now gets compiled to Java Byte code which in the Java terminology is referred to as Client Side compilation. This compilation to Java Byte code is what enables Java developers to ‘write once’. Java Byte code can run on any compatible OS and server, hence making the source code agnostic of OS/Server. Post Java Byte code creation, the interaction between the Java application and the underlying OS/Server is more intimate. The journey continues - The enterprise applications framework executes these Java Byte codes in a run time environment which is known as Java Virtual Machine (JVM) or Java Runtime Environment (JRE). The JVM has close ties to the underlying OS and Hardware because it leverages resources offered by the OS and the Server. Java Byte code is now compiled to a machine language executable code which is platform specific. This is referred to as Server side compilation.

所以我认为Java绝对是一种编译语言。

其他回答

Java被编译成字节码,然后进入Java VM,由其解释。

Java是一种编译的编程语言,但它不是直接编译为可执行的机器代码,而是编译为一种称为JVM字节代码的中间二进制形式。然后对字节码进行编译和/或解释以运行程序。

Java是一种字节编译语言,目标是一个叫做Java虚拟机的平台,它是基于堆栈的,在许多平台上都有一些非常快速的实现。

报价来自:https://blogs.oracle.com/ask-arun/entry/run_your_java_applications_faster

Application developers can develop the application code on any of the various OS that are available in the market today. Java language is agnostic at this stage to the OS. The brilliant source code written by the Java Application developer now gets compiled to Java Byte code which in the Java terminology is referred to as Client Side compilation. This compilation to Java Byte code is what enables Java developers to ‘write once’. Java Byte code can run on any compatible OS and server, hence making the source code agnostic of OS/Server. Post Java Byte code creation, the interaction between the Java application and the underlying OS/Server is more intimate. The journey continues - The enterprise applications framework executes these Java Byte codes in a run time environment which is known as Java Virtual Machine (JVM) or Java Runtime Environment (JRE). The JVM has close ties to the underlying OS and Hardware because it leverages resources offered by the OS and the Server. Java Byte code is now compiled to a machine language executable code which is platform specific. This is referred to as Server side compilation.

所以我认为Java绝对是一种编译语言。

Java既能编译也能解释,

在Java中,程序不会被编译成可执行文件;它们被编译成字节码(如前所述),然后JVM (Java虚拟机)在运行时解释/执行字节码。当我们使用javac编译器时,Java源代码被编译成字节码。字节码保存在文件扩展名为.class的磁盘上。

当程序要运行时,字节码被转换字节码可以被转换,使用即时(JIT)编译器。结果是机器代码,然后将其送入内存并执行。

Javac is the Java Compiler which Compiles Java code into Bytecode. JVM is Java Virtual Machine which Runs/ Interprets/ translates Bytecode into Native Machine Code. In Java though it is considered as an interpreted language, It may use JIT (Just-in-Time) compilation when the bytecode is in the JVM. The JIT compiler reads the bytecodes in many sections (or in full, rarely) and compiles them dynamically into machine code so the program can run faster, and then cached and reused later without needing to be recompiled. So JIT compilation combines the speed of compiled code with the flexibility of interpretation.

解释型语言是一种编程语言,它的大部分实现直接而自由地执行指令,而不需要事先将程序编译成机器语言指令。解释器直接执行程序,将每个语句转换成一个或多个已经编译成机器代码的子例程序列。

编译语言是一种编程语言,它的实现通常是编译器(从源代码生成机器代码的翻译器),而不是解释器(源代码的逐步执行器,其中不发生运行前翻译)。

在Java等现代编程语言实现中,提供两种选项的平台越来越流行。