0

我正在开发一个简单的测试工具来验证客户服务器可以在 1 秒内详细说明多少 HASH(SHA1)。

随附的示例使用多线程来启动和停止对已执行 HASH 进行计数的计时器。HASH 是连续的。

该应用程序在 Visual Studio 中运行良好,但如果我在 VS 环境之外运行它,它会崩溃。

问题出在“使用”部分中的 increment() 函数上。如果我评论它,一切正常!

    static void increment()
    {
        try
        {
            using (SHA1 sha = new SHA1CryptoServiceProvider())
            {
                byte[] result;
                byte[] data = new byte[20];
                new Random().NextBytes(data);
                result = sha.ComputeHash(data);
            } 
            Interlocked.Increment(ref safeInstanceCount);
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }

用于启动和停止时间的代码如下:

    bool stop;

    static void Main() 
    {

        try {

        TimerQueueTimer qt;
        qt = new TimerQueueTimer();
        TimerQueueTimer.WaitOrTimerDelegate CallbackDelete = new TimerQueueTimer.WaitOrTimerDelegate(QueueTimerCallback);
        uint dueTime = uint.Parse(textBox1.Text); // string "60000" = 1 min
        uint period = 0; 
        qt.Create(dueTime, period, CallbackDelete);

        while (!stop)
        {
        //    Thread thread = new Thread(new ThreadStart(increment));
        //    thread.IsBackground = true;
        //    thread.Start();
            increment();
        }
        stop = false;
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }


    private void QueueTimerCallback(IntPtr pWhat, bool success)
    {
        try
        {
            stop = true;
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }

我怎样才能理解错误在哪里?

=

应用程序崩溃,没有任何异常。我试图抓住它,但没有成功,它发生在 60 秒后。(也许 QueueTimerCallback 被调用?)

该应用程序不会生成任何错误跟踪,并且在 Visual Studio 下运行不会崩溃!当它崩溃时,它不会生成任何堆栈跟踪,只是一个弹出崩溃窗口,详细给出“StackHash_xxxxx”错误

没事做!我尝试使用 Console.Read (这是一个 Windows 应用程序而不是控制台),但我什么也看不到。这是显示的错误! https://picasaweb.google.com/lh/photo/iHsBhRSy-DNTYVo4CpoeA9MTjNZETYmyPJy0liipFm0?feat=directlink

4

1 回答 1

0

您的程序可能会抛出异常,并且它被写入控制台,但是您没有任何东西可以在写入消息后立即停止控制台关闭。

Console.ReadKey();在 try/catch 块之后添加一个。

于 2013-07-25T20:48:31.550 回答