测试程序运行的时间

---恢复内容开始---

运行一个小的程序要多久的时间呢,这就要用一个小小的程序运行的结果试验一下:

下面是一个小的代码:

#首先要引用时间
import time
t = time.clock()
result = ("select * from 表A")
e = time.clock()
#这打印的是运行这个命令用的是多长时间
print(t-e)
print(result)

就是这么的简单

时间: 2024-12-21 13:55:15

测试程序运行的时间的相关文章

R语言记录程序运行的时间

f <- function(start_time) { start_time <- as.POSIXct(start_time) dt <- difftime(Sys.time(), start_time, units="secs") # Since you only want the H:M:S, we can ignore the date... # but you have to be careful about time-zone issues format(

C++中计算程序运行的时间

首先定义clock_t start, end; 然后在自己要测试那段代码的前面加上start = clock(); 结尾加上end = clock(); 最后用输出语句进行 cout<<"Run time: "<<(double)(end - start) / CLOCKS_PER_SEC<<"S"<<endl; cout<<"Run time: "<<(double)(en

监测程序运行的时间,stopWatch

1 ArrayList arrInt = new ArrayList(); 2 //用stopwatch来计时 运行的时间 3 Stopwatch watch = new Stopwatch(); 4 watch.Start(); 5 for (int i = 0; i < 1000000; i++) 6 { 7 arrInt.Add(i); 8 } 9 watch.Stop(); 10 Console.WriteLine(watch.Elapsed); 11 Console.ReadKey()

输出程序运行的时间(精确到微秒)

对于要求性能的代码,输出程序运行的时间还是很有必要的,而且需要较高的精确度,下面这个代码段就实现了此功能 注意:只限于Linux下使用,因为<sys/time.h>的缘故 1 #include <sys/time.h> 2 #include <iostream> 3 4 using namespace std; 5 6 int main(int argc, char **argv) 7 { 8 // 统计所用时间 9 unsigned int unTimeUse; 10

设置ASP.NET页面的运行超时时间详细到单个页面及站点

这篇文章主要介绍了如何设置ASP.NET页面的运行超时时间,包括全局超时时间.单个站点超时时间.单个页面请求超时时间,需要的朋友可以参考下 全局超时时间 服务器上如果有多个网站,希望统一设置一下超时时间,则需要设置 Machine.config 文件中的 ExecutionTimeout 属性值. Machine.config 文件位于 %SystemRoot%\Microsoft.NET\Framework\%VersionNumber%\CONFIG\ 目录中. 例如: <httpRunti

IOS测试程序运行耗时

iOS设备相对于电脑,内存和处理能力有限,所以一段代码或者程序运行的时间需要时刻注意,这里提供两种获取精确时间的方法. 方法一:使用系统时间 1 NSDate* tmpStartData = [[NSDate date] retain]; 2 //You code here... 3 double deltaTime = [[NSDate date] timeIntervalSinceDate:tmpStartData]; 4 NSLog(@">>>>>>&g

EBS查找运行请求时间,参数等

--查找运行请求时间,参数等(可以是某用户的,某个报表) select c.user_name, papf.full_name, b.user_concurrent_program_name, a.request_date, a.argument_text, (a.actual_completion_date - a.actual_start_date) * 24 * 60 minutes, a.actual_start_date, a.actual_completion_date, a.req

SECONDS内部变量-脚本运行的时间

##SECONDS记录的是这个脚本运行的时间 #!/bin/bash count=1 MAX=5 while [[ "$SECONDS" -le "$MAX" ]] do         echo "this is the $count time to sleep"         let "count=$count+1"         sleep 2 done echo "The running time of 

代码片--实现一个简单的模版方法设计模式(获取一段程序运行的时间)

package com.dreamy.day03; /** * @author dreamy * 需求:获取一段程序运行的时间 * 原理:获取程序开始和结束的时间并相减即可. * 获取时间:System.currentTimeMillis() * * * 当代码完成优化后,就可以解决这类问题 * 这种方式叫做模版方法设计模式. * * 什么是模版方法呢? * 在定义功能时,功能的一部分是确定的,但是有一部分是不确定的,而确定的部分在使用的不确定的部分, * 那么这时就将不确定的部分暴露出去,由该