웹서버 프로그래밍 (node.js)/자바 프로그래밍

자바 hello world

kkedory 2020. 3. 2. 13:36
728x90

자바와 이클립스 설치 후 간단한 test하는 프로그램입니다.

 

 

public class hello_world {


     public static void main(String[] args) {
        System.out.println("hello world 1");
     }

 

}

 

 

예상 결과

 

hello world 1

 

 

해석

 

public class hello_world -> hello_world 라는 클래스를 만들어라

 

public static void main(String[] args) -> 이 부분을 자동으로 실행해라

 

System.out.println("hello world 1");  -> 컨솔에 hello world 1 을 표시해라

 

 

728x90