W Javie, jaka jest różnica z System.exit(0)
następującym kodem lub bez ?
public class TestExit
{
public static void main(String[] args)
{
System.out.println("hello world");
System.exit(0); // is it necessary? And when it must be called?
}
}
Dokument mówi: „Ta metoda nie zwraca normalnie.” Co to znaczy?