1. Arrêt de la JVM
(1) Arrêt normal
Toutes les exécutions de threads non-démons se terminent
System.exit(0)
ctrl+c
kill -15 SIGTERM signal
(2) Arrêt anormal
RuntimeExcetion
OOM
(3) Arrêt forcé
kill -9 Signal SIGKILL
Runtime.halt()
Panne de courant
Arrêt du système
Crash du système
2, instance
public void start(){ Runtime.getRuntime().addShutdownHook(new Thread(){ public void run(){ try{ LogService.this.stop(); }catch(InterruptedException){ } } }); }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!