Java100 Part.3 - static 선언이 안되어있는 메소드를 사용하는 방법

Jeong Woosi·2022년 1월 31일
0

Java100 Part.3

목록 보기
6/24
  • static 有: 객체 생성 없이클래스명.메소드명();
  • static 無: 객체 생성 필요함
public class Java100_method_ExamStatic2 {

    public void helloWorld() {
    System.out.println("Hello, World~");
}

public static void main(String[] args) {

    // [1]: 메소드 호출
    // helloWorld(); //---메인 메소드를 static 메소드만 호출 할 수 있기 때문에 에러....
    
    // [2]: 객체 생성 후 메소드 호출
    Java100_method_ExamStatic2 jes = new Java100_method_ExamStatic2();
    jes.helloWorld();
    
    }
}
profile
Let's start to Coding

0개의 댓글