Quackster
a devbest user says what
Hello..
The simple java code is this
Then main() will keep calling itself, getting deeper and deeper, and when the space used to keep track of what functions you're in is filled up, you get the stack overflow error.
Good luck
PS: @sauce
The simple java code is this
Code:
public class Test
{
public static void main(String[] args)
{
Test.main(args);
}
}
Then main() will keep calling itself, getting deeper and deeper, and when the space used to keep track of what functions you're in is filled up, you get the stack overflow error.
Good luck
PS: @sauce
You must be registered for see links