incr.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: incr.n,v 1.3.18.1 2004/10/27 12:52:40 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH incr n "" Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. incr - Increment the value of a variable
  16. .SH SYNOPSIS
  17. fBincr fIvarName fR?fIincrementfR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. Increments the value stored in the variable whose name is fIvarNamefR.
  22. The value of the variable must be an integer.
  23. If fIincrementfR is supplied then its value (which must be an
  24. integer) is added to the value of variable fIvarNamefR;  otherwise
  25. 1 is added to fIvarNamefR.
  26. The new value is stored as a decimal string in variable fIvarNamefR
  27. and also returned as result.
  28. .SH EXAMPLES
  29. Add one to the contents of the variable fIxfR:
  30. .CS
  31. fBincrfR x
  32. .CE
  33. .PP
  34. Add 42 to the contents of the variable fIxfR:
  35. .CS
  36. fBincrfR x 42
  37. .CE
  38. .PP
  39. Add the contents of the variable fIyfR to the contents of the
  40. variable fIxfR:
  41. .CS
  42. fBincrfR x $y
  43. .CE
  44. .PP
  45. Add nothing at all to the variable fIxfR (often useful for checking
  46. whether an argument to a procedure is actually numeric and generating
  47. an error if it is not):
  48. .CS
  49. fBincrfR x 0
  50. .CE
  51. .SH "SEE ALSO"
  52. expr(n)
  53. .SH KEYWORDS
  54. add, increment, variable, value