0

如何根据函数的执行时间将我的计时器设置为间隔。

int main()
{
Timer t=new Timer();
t.start();
myfunc();
t.stop();
long elapsed=stop-start;
Need to set timer to this interval everytime instead of fixed interval.
}
4

2 回答 2

0

最好的方法是使用StopWatch 类,它提供了一组方法和属性,您可以使用这些方法和属性来准确测量经过的时间。像这样的一些事情:

// Create new stopwatch
Stopwatch stopwatch = new Stopwatch();

// Begin timing
stopwatch.Start();

// Do something
myfunc();

// Stop timing
stopwatch.Stop();

// Write result
Console.WriteLine("Time elapsed: {0}", stopwatch.Elapsed);
于 2012-07-14T10:02:45.093 回答
0
class Myclass
{
private static Timer newTimer;

static void main()
{
newTimer=new Timer(timercallback,null,0,10000);
}

private static timercallback(Object o)
{
Stopwatch sw=new Stopwatch();
sw.Start();
myfunction();
sw.Stop();
newTimer.change(0,sw.ElapsedMilliseconds);
GC.Collect();

//这将根据函数执行时间设置定时器间隔。}

于 2012-07-15T06:41:44.253 回答