只要还没有触发CancelKeyPress事件,保持控制台应用程序打开的最佳方法是什么?
我不想使用Console.Read或Console.ReadLine,因为我不想接受输入。我只是想让底层应用程序在触发时打印到控制台事件详细信息。然后,一旦触发了CancelKeyPress事件,我想优雅地关闭应用程序。
答案 0 :(得分:11)
我假设“优雅地关闭应用程序”是你在这里努力的部分。否则,您的应用程序将自动退出ctrl-c。你应该改变标题。
以下是我认为您需要的快速演示。使用锁定和监视器进行通知可以进一步细化。我不确定你到底需要什么,所以我只是提出这个......
class Program
{
private static volatile bool _s_stop = false;
public static void Main(string[] args)
{
Console.CancelKeyPress += new ConsoleCancelEventHandler(Console_CancelKeyPress);
while (!_s_stop)
{
/* put real logic here */
Console.WriteLine("still running at {0}", DateTime.Now);
Thread.Sleep(3000);
}
Console.WriteLine("Graceful shut down code here...");
//don't leave this... demonstration purposes only...
Console.ReadLine();
}
static void Console_CancelKeyPress(object sender, ConsoleCancelEventArgs e)
{
//you have 2 options here, leave e.Cancel set to false and just handle any
//graceful shutdown that you can while in here, or set a flag to notify the other
//thread at the next check that it's to shut down. I'll do the 2nd option
e.Cancel = true;
_s_stop = true;
Console.WriteLine("CancelKeyPress fired...");
}
}
_s_stop布尔值应声明为volatile或过于雄心勃勃的优化器可能导致程序无限循环。
答案 1 :(得分:5)
_s_stop
布尔值应该在示例代码中声明为volatile,否则过于雄心勃勃的优化器可能导致程序无限循环。
答案 2 :(得分:1)
已经有一个绑定到CancelKeyPress的处理程序终止了你的应用程序,挂钩的唯一原因就是你要拦截事件并阻止应用程序关闭。
在您的情况下,只需将您的应用程序置于无限循环中,然后让内置事件处理程序终止它。您可能希望使用Wait(1)或后台进程之类的东西来防止它在什么都不做的情况下使用大量的CPU。
答案 3 :(得分:1)
答案 4 :(得分:0)
只需在键盘上输入 CTRL + f5 而不是F5(调试),无需调试即可运行您的程序或代码。