C#中用那个函数可以计算出程序运行的时间?

2024-12-15 14:31:02
推荐回答(5个)
回答1:

System.Diagnostics.Stopwatch stopwatch = new Stopwatch();
stopwatch.Start(); // 开始监视代码

//你要运行的代码

stopwatch.Stop(); // 停止监视
TimeSpan timeSpan = stopwatch.Elapsed; // 获取总时间
double hours = timeSpan .TotalHours; // 小时
double minutes = timeSpan .TotalMinutes; // 分钟
double seconds = timeSpan .TotalSeconds; // 秒数
double milliseconds = timeSpan .TotalMilliseconds; // 毫秒数

回答2:

System.Diagnostics.Stopwatch stopwatch = new Stopwatch();
stopwatch.Start(); // 开始监视代码

//你要运行的代码

stopwatch.Stop(); // 停止监视
TimeSpan timeSpan = stopwatch.Elapsed; // 获取总时间
double hours = timeSpan .TotalHours; // 小时
double minutes = timeSpan .TotalMinutes; // 分钟
double seconds = timeSpan .TotalSeconds; // 秒数
double milliseconds = timeSpan .TotalMilliseconds; // 毫秒数
追问:
1 找不到类型或命名空间名称“Stopwatch”(是否缺少 using 指令或程序集引用?) C:\Documents and Settings\Administrator\桌面\C#\新建文件夹\试试\试试\Program.cs 11 50 试试
追答:
System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch();

回答3:

输出:
输出一个文本文件,给出哪些行是重复的,第一次出现的行号,格式如下
行号 此行的文本内容
并给出此程序的运行时间
static void Main(string[] args)
{
TimeSpan ts1 = new TimeSpan(DateTime.Now.Ticks);
StreamReader sr = new StreamReader(@"D:\文本.txt", System.Text.Encoding.Default); //the path of source file.
String strline="";
int number=1;//行号
StringBuilder sb=new StringBuilder();
Hashtable myHT=new Hashtable ();//定义哈希表,判断重复行
while((strline=sr.ReadLine())!=null)//判断当前读的一行字符串是不是为空,为空就不要判断后面
{
if (myHT.ContainsKey(strline))//判断当前这一行内容是不是已经存到哈希表了
{
sb.Append(myHT[strline].ToString() + " " + strline + "\r\n");//如果这一行内容已经添加过,则重复,把重复的内容放到StringBuilder中

}
else
{
myHT.Add(strline, number);//存入行的内容以及它的行号.
}
number++;
}
sr.Close();//结束
StreamWriter wr = new StreamWriter(@"D:\1.txt");//the output file.
wr.Write(sb+"");//输出StringBuilder到指定路径.
wr.Close();
TimeSpan ts2 = new TimeSpan(DateTime.Now.Ticks); //get current ticks.
string spanTotalSeconds = ts2.Subtract(ts1).Duration().TotalSeconds.ToString(); //计算整个程序的运行时间
Console.WriteLine(spanTotalSeconds);
Console.ReadKey();
}

回答4:

开始时记录时间,结算时再记录时间,两时间相减就可以得出运行时间了

回答5:

定义两个时间对象
在程序开始和结束时获取两个时间
计算时间差就是你程序的欲行时间
精确到毫秒级
不同的硬件配置
时间肯定不一样