Considera un'applicazione console che avvia alcuni servizi in un thread separato. Tutto quello che deve fare è aspettare che l'utente prema Ctrl + C per spegnerlo.
Quale dei seguenti è il modo migliore per farlo?
static ManualResetEvent _quitEvent = new ManualResetEvent(false);
static void Main() {
Console.CancelKeyPress += (sender, eArgs) => {
_quitEvent.Set();
eArgs.Cancel = true;
};
// kick off asynchronous stuff
_quitEvent.WaitOne();
// cleanup/shutdown and quit
}
O questo, usando Thread.Sleep (1):
static bool _quitFlag = false;
static void Main() {
Console.CancelKeyPress += delegate {
_quitFlag = true;
};
// kick off asynchronous stuff
while (!_quitFlag) {
Thread.Sleep(1);
}
// cleanup/shutdown and quit
}
bool
non viene dichiarato comevolatile
, esiste la possibilità che le letture successive_quitFlag
nelwhile
ciclo vengano ottimizzate, portando a un ciclo infinito.