[![enter image description here][1]][1]In my opinion,the first output should be "hello",but why the first output is "world" ?
public static void main(String[] args) {
System.out.println("hello");
test();
}
public static void test() {
System.out.println("world");
main(null);
System.out.println("!");
}
}
[1]: https://i.stack.imgur.com/SXSHY.png