- 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();
}
}