time.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: time.n,v 1.3.18.1 2004/10/27 14:43:14 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH time n "" Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. time - Time the execution of a script
  16. .SH SYNOPSIS
  17. fBtime fIscriptfR ?fIcountfR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. This command will call the Tcl interpreter fIcountfR
  22. times to evaluate fIscriptfR (or once if fIcountfR isn't
  23. specified).  It will then return a string of the form
  24. .CS
  25. fB503 microseconds per iterationfR
  26. .CE
  27. which indicates the average amount of time required per iteration,
  28. in microseconds.
  29. Time is measured in elapsed time, not CPU time.
  30. .SH EXAMPLE
  31. Estimate how long it takes for a simple Tcl fBforfR loop to count to
  32. a thousand:
  33. .CS
  34. time {
  35.     for {set i 0} {$i<1000} {incr i} {
  36.         # empty body
  37.     }
  38. }
  39. .CE
  40. .SH "SEE ALSO"
  41. clock(n)
  42. .SH KEYWORDS
  43. script, time