+ 2
How big is a stack?
I got stackoverflow error. What is the limit for this? (Will it happen same on all devices? Device independence?) No recursion but recurring user input got me this.(java✌)
1 Respuesta
+ 2
It depends on JVM version - here you can see - default stack size of different JVM version - https://docs.oracle.com/cd/E13150_01/jrockit_jvm/jrockit/jrdocs/refman/optionX.html#wp1024112 . You also can increase stack size if you want, but you need to change settings of jvm - "java -Xss16M" - write this in your console if you want to increase stack size to 16mb. Of course you cannot do this in sololearn platform.