[ 작업 환경 ]

 

Windows10

jdk-15

 

 

 

 

 

1. 작업 위치로 이동

 

cd oop_2021

 

 

 

 

 

2. Greeting.java 작성

 

주의사항! public class 이름인 Greeting과 파일의 이름인 Greeting.java의 이름인 Greeting을 같게 맞춰줘야 정상적으로 실행됩니다.

//********************************************************************
// Greeting.java
//
// Demonstrates the basic structure of a Java application.
//********************************************************************

public class Greeting
{
    //-----------------------------------------------------------------
    // Prints a greeting message.
    //-----------------------------------------------------------------
    public static void main (String[] args)
    {
        System.out.println("Hello World!");
    }
}

 

 

 

 

 

3. Greeting.java 실행

 

Greeting.java를 컴파일하여 class 파일을 생성한 후, java를 통해 실행해줍니다.

javac Greeting.java
java Greeting

 

 

 

+ Recent posts