関数の実行時間を確認したいのですが。そこで、フォームにタイマーオブジェクトを追加し、次のコードを作成しました。
private int counter = 0;
// Inside button click I have:
timer = new Timer();
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
timer.Stop();
そして:
private void timer_Tick(object sender, EventArgs e)
{
counter++;
btnTabuSearch.Text = counter.ToString();
}
しかし、これは何も数えていません。どうして?
タイマーの将来の問題を回避するために、正しいコードを次に示します。
timer = new Timer();
timer.Tick += new EventHandler(timer_Tick);
timer.Interval = 1; //set interval on 1 milliseconds
timer.Enabled = true; //start the timer
Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
timer.Enabled = false; //stop the timer
private void timer_Tick(object sender, EventArgs e)
{
counter++;
btnTabuSearch.Text = counter.ToString();
}
しかし、それは間違ったアプローチです。 Stopwatch(System.Diagnostic) クラスはHigh resolution timerおよびWord Diagnosticはすべてを言います。
だからこれを試してください:
Stopwatch timer = Stopwatch.StartNew();
Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
timer.Stop();
TimeSpan timespan = timer.Elapsed;
btnTabuSearch.Text = String.Format("{0:00}:{1:00}:{2:00}", timespan.Minutes, timespan.Seconds, timespan.Milliseconds / 10);
タイマーを使用しない- Stopwatch
クラスを使用します。
var sw = new Stopwatch();
Result result = new Result();
sw.Start();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
sw.Stop();
// sw.Elapsed tells you how much time passed
コードの実行にかかる時間を確認する最良の方法は、System.Diagnostics.Stopwatch
を使用することです。
以下に例を示します。
using System.Diagnostics;
#if DEBUG
Stopwatch timer = new Stopwatch();
timer.Start();
#endif
//Long running code
#if DEBUG
timer.Stop();
Debug.WriteLine("Time Taken: " + timer.Elapsed.TotalMilliseconds.ToString("#,##0.00 'milliseconds'"));
#endif
#if DEBUG
を使用して、ストップウォッチコードが製品リリースに入らないようにしますが、それなしで実行できます。
タイミング関数にはストップウォッチクラスを使用する必要があります。
以下を試してください:
private int counter = 0;
// setup stopwatch and begin timing
var timer = System.Diagnostics.Stopwatch.StartNew();
Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
// stop timer and get elapsed time
timer.Stop();
var elapsed = timer.Elapsed;
// display result time
MessageBox.Show(elapsed.ToString("mm':'ss':'fff"));
Visual Studio 2015 、2017 ProfessionalおよびEnterpriseには診断ツールがあります。関数の最後にブレークポイントがある場合、画像に示すようにEventsタブの下に時間と期間が表示されます。
詳細については、記事Visual Studio 2015の診断ツールデバッガーウィンドウを参照してください。
PS;これまでのところ、Xamarinフォームのみ、クロスプラットフォームプロジェクトはこの機能をサポートしていません。 Microsoftがxamarinフォームプロジェクトにもこの優れた機能をもたらすことを願っています。
System.Diagnosticsの Stopwatch を使用します。
static void Main(string[] args)
{
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
Thread.Sleep(10000);
stopWatch.Stop();
// Get the elapsed time as a TimeSpan value.
TimeSpan ts = stopWatch.Elapsed;
// Format and display the TimeSpan value.
string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
ts.Hours, ts.Minutes, ts.Seconds,
ts.Milliseconds / 10);
Console.WriteLine("RunTime " + elapsedTime);
}
関数のタイミングをとるには、 Stopwatch Class を使用する必要があります
また、タイマーがカウントされない理由は、タイマーの間隔を設定しなかったためです。
おそらく、あなたはそのようなメソッドを書くことができます:
public static void Time(Action action)
{
Stopwatch st = new Stopwatch();
st.Start();
action();
st.Stop();
Trace.WriteLine("Duration:" + st.Elapsed.ToString("mm\\:ss\\.ff"));
}
そしてそのように使用します:
Time(()=>
{
CallOfTheMethodIWantToMeasure();
});
すべての提案を確認し、同意しました。しかし、ストップウォッチロジックを複数回実装するのではなく、複数のメソッドの実行時間を測定したい実行時間ロガーの1つの汎用実装を共有したかったのです。
ロガーを一般的な方法で実装しない主な理由は、メソッドの実行がstopwatch.Start()とstopwatch.Stop()の間にあることです。また、処理後にメソッドの結果が必要になる場合があります。
そこで、この問題に取り組むために、実行時間を実際のメソッドフローと混合せずに個別に記録する次のサンプル実装を作成しました。
public static class Helper
{
public static T Time<T>(Func<T> method, ILogger log)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
var result = method();
stopwatch.Stop();
log.Info(string.Format("Time Taken For Execution is:{0}", stopwatch.Elapsed.TotalMilliseconds));
return result;
}
}
public class Arithmatic
{
private ILogger _log;
public Arithmatic(ILogger log)//Inject Dependency
{
_log = log;
}
public void Calculate(int a, int b)
{
try
{
Console.WriteLine(Helper.Time(() => AddNumber(a, b), _log));//Return the result and do execution time logging
Console.WriteLine(Helper.Time(() => SubtractNumber(a, b), _log));//Return the result and do execution time logging
}
catch (Exception ex)
{
_log.Error(ex.Message, ex);
}
}
private string AddNumber(int a, int b)
{
return "Sum is:" + (a + b);
}
private string SubtractNumber(int a, int b)
{
return "Subtraction is:" + (a - b);
}
}
public class Log : ILogger
{
public void Info(string message)
{
Console.WriteLine(message);
}
public void Error(string message, Exception ex)
{
Console.WriteLine("Error Message:" + message, "Stacktrace:" + ex.StackTrace);
}
}
public interface ILogger
{
void Info(string message);
void Error(string message, Exception ex);
}
呼び出し元:
static void Main()
{
ILogger log = new Log();
Arithmatic obj = new Arithmatic(log);
obj.Calculate(10, 3);
Console.ReadLine();
}
現在のステップが処理を開始する時間を記録します
DateTime dtStart = DateTime.Now;
//Calculate the total number of milliseconds request took (Timespan = to represent the time interval)-> current - started time stamp ...
//TotalMilliseconds -->Gets the value of the current TimeSpan structure expressed in whole and fractional milliseconds.
// to measure how long a function is running
var result=((TimeSpan)(DateTime.Now - dtStart)).TotalMilliseconds.ToString("#,##0.00") + "ms";