day10_CallStackTestEx03

육희영·2021년 10월 5일
0

호출 되는 순서

package day10;

//호출 되는 순서
public class CallStackTestEx03 {
	public static void main(String[] args) {
		 firstMethod(); 
    } 

    static void firstMethod() { 
          secondMethod(); 
    } 

    static void secondMethod() { 
          System.out.println("secondMethod()");             
    } 
}

//static으로 선언된 메소드에는 static으로 선언된 메소드만 올수있음.

출력결과

secondMethod()

0개의 댓글

Powered by GraphCDN, the GraphQL CDN