我想测量C#例程所需的时间。因为还有很多其他线程我只想计算这一个线程的时间。在Java中,我可以使用getCurrentThreadCpuTime
。
我该怎么做?
答案 0 :(得分:1)
你应该研究PerformanceCounters。它们非常复杂,设置起来可能有点痛苦,但它们为指标提供的功能非常强大。可能会有所帮助的一些事情:
答案 1 :(得分:1)
你做不到。您无法衡量特定thread
的累计时间开启CPU 。
您可以做的最准确的事情是为每个任务分离一个单独的process
,然后测量该过程的CPU时间(实际上可以在.Net中完成)......但这太过分了
如果您需要有关如何操作的帮助,您应该专门提出另一个问题。
答案 2 :(得分:-3)
你可以使用秒表。这将是最简单的方法。
public void Worker()
{
var stopwatch = new Stopwatch();
stopwatch.Start();
///Do your wwork here
var timeElapsed = stopwatch.Elapsed;
}
<强>更新强>
我的问题出错了,那么这个呢?如果您使用线程睡眠,它不起作用。对不起,如果这仍然不是你想要的。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Threading;
using System.Runtime.InteropServices;
using System.Collections.Concurrent;
namespace ConsoleApplication2
{
class Program
{
static ConcurrentDictionary<int, ProcessThread> threadIdsMapping = new ConcurrentDictionary<int, ProcessThread>();
static void Main(string[] args)
{
Thread oThread = new Thread(
delegate()
{
threadIdsMapping.GetOrAdd(Thread.CurrentThread.ManagedThreadId, GetProcessThreadFromWin32ThreadId(null));
long counter = 1;
while (counter < 1000000000)
{
counter++;
}
});
oThread.Start();
oThread.Join();
Console.WriteLine(threadIdsMapping[oThread.ManagedThreadId].TotalProcessorTime);
Console.WriteLine(threadIdsMapping[oThread.ManagedThreadId].UserProcessorTime);
Console.WriteLine(DateTime.Now - threadIdsMapping[oThread.ManagedThreadId].StartTime);
Console.ReadKey();
}
public static ProcessThread GetProcessThreadFromWin32ThreadId(int? threadId)
{
if (!threadId.HasValue)
{
threadId = GetCurrentWin32ThreadId();
}
foreach (Process process in Process.GetProcesses())
{
foreach (ProcessThread processThread in process.Threads)
{
if (processThread.Id == threadId) return processThread;
}
}
throw new Exception();
}
[DllImport("Kernel32", EntryPoint = "GetCurrentThreadId", ExactSpelling = true)]
public static extern Int32 GetCurrentWin32ThreadId();
}
}