DEV Community

sunj
sunj

Posted on

java의 실행순서

public class hello{
   public static void main(String [] args){
      System.out.println("hello");   
   }
}
Enter fullscreen mode Exit fullscreen mode

hello.java -> (javac hello.java) hello.class -> (jar -cf hello.jar *.class) hello.jar

컴파일
: 인간이 이해할 수 있게 작성된 소스코드(java, c, php 등)를 CPU가 이해할 수 있는 언어(기계어)로 변환하는 작업
컴파일러
: 이러한 작업을 실행하는 소프트웨어

Top comments (0)