728x90 자바 메서드 호출1 [JAVA] ch05-07. 메서드 호출 public class Ex07 { // 메서드에서 다른 메서드를 호출할 때. public static void main(String[] args){ MethodTest m = new MethodTest(); m.first(); } } class MethodTest{ void first(){ System.out.println("first."); second(); } void second(){ System.out.println("second."); third(); } void third(){ System.out.println("third."); } } JAVA/예제 2017. 8. 22. 이전 1 다음 728x90