我正在写一个小小的c#程序哈希哈希。我希望它做两件事(有点像基准测试):
hash = md5.ComputeHash(hash);
tell me how many times per second it can do this.
目前我有一个带有OnTimedEvent的计时器来跟踪每秒有多少哈希值和一个无限时间(真实)循环来保持哈希值。当哈希开始时,我的程序和计时器就会冻结。
这样做的正确方法是什么?如何在不冻结的情况下继续散列(并输出)?
提前致谢!
马腾
此时除计时器外,一切都是静音线性的。
public partial class Form1 : Form
{
private int count;
private MD5 md5;
private byte[] hash;
private bool Calculate = false;
private System.Timers.Timer timer;
public Form1()
{
InitializeComponent();
count = 0;
PrepareFirstHash();
timer = new System.Timers.Timer(1000);
timer.Elapsed += OnTimedEvent;
timer.Enabled = true;
}
private void PrepareFirstHash()
{
md5 = MD5.Create();
byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes("start");
hash = md5.ComputeHash(inputBytes);
}
private void DoCalc()
{
hash = md5.ComputeHash(hash);
count++;
}
private void OnTimedEvent(Object source, ElapsedEventArgs e)
{
SetText(count.ToString());
count = 0;
}
delegate void SetTextCallback(string text);
private void SetText(string text)
{
if (this.label1.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{
this.label1.Text = text;
}
}
private void btnStart_Click(object sender, EventArgs e)
{
Calculate = true;
while (Calculate){
DoCalc();
}
}
private void btnStop_Click(object sender, EventArgs e)
{
Calculate = false;
}
}
}
答案 0 :(得分:1)
您现在可以在UI线程上运行所有内容,因此BackgroundWorker选项并不是那么糟糕。
你真的不得不深入研究多线程编程,尽管以下内容可以提供一个先机: http://codesamplez.com/programming/multithreaded-programming-c-sharp