[ジャワ] メインJavaでの再帰呼び出し

予想外に友人がこのコードを与え、テストが実行されたとき.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
package VietSource.net.temp;
 
public class FunctionCallMain {
    private static int a = 0;
    public static void main(String[] args) {
        if (a == 2)
            System.exit(0);
        else ++a;
        System.out.println("This is main");
        callMain();
        
    }
    
    public static void callMain() {
        System.out.println("This is a function call main function");
        main(new String[]{"Quan"});
    }
}