Java source code examples

Java source code samples. Java code examples.

Terminates the currently running Java Virtual Machine

* * * * * 1 votes

Terminates the current Java Virtual Machine

public class SystemExample {
	public static void main(String[] args) {
		System.exit(1);
	}
}

Tags: java.lang

Discuss This Code