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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-2000 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: expr.n,v 1.10.2.2 2004/10/27 09:35:38 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH expr n 8.4 Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. expr - Evaluate an expression
  16. .SH SYNOPSIS
  17. fBexpr fIarg fR?fIarg arg ...fR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. Concatenates fIargfRs (adding separator spaces between them),
  22. evaluates the result as a Tcl expression, and returns the value.
  23. The operators permitted in Tcl expressions are a subset of
  24. the operators permitted in C expressions, and they have the
  25. same meaning and precedence as the corresponding C operators.
  26. Expressions almost always yield numeric results
  27. (integer or floating-point values).
  28. For example, the expression
  29. .CS
  30. fBexpr 8.2 + 6fR
  31. .CE
  32. evaluates to 14.2.
  33. Tcl expressions differ from C expressions in the way that
  34. operands are specified.  Also, Tcl expressions support
  35. non-numeric operands and string comparisons.
  36. .SH OPERANDS
  37. .PP
  38. A Tcl expression consists of a combination of operands, operators,
  39. and parentheses.
  40. White space may be used between the operands and operators and
  41. parentheses; it is ignored by the expression's instructions.
  42. Where possible, operands are interpreted as integer values.
  43. Integer values may be specified in decimal (the normal case), in octal (if the
  44. first character of the operand is fB0fR), or in hexadecimal (if the first
  45. two characters of the operand are fB0xfR).
  46. If an operand does not have one of the integer formats given
  47. above, then it is treated as a floating-point number if that is
  48. possible.  Floating-point numbers may be specified in any of the
  49. ways accepted by an ANSI-compliant C compiler (except that the
  50. fBffR, fBFfR, fBlfR, and fBLfR suffixes will not be permitted in
  51. most installations).  For example, all of the
  52. following are valid floating-point numbers:  2.1, 3., 6e4, 7.91e+16.
  53. If no numeric interpretation is possible (note that all literal
  54. operands that are not numeric or boolean must be quoted with either
  55. braces or with double quotes), then an operand is left as a string
  56. (and only a limited set of operators may be applied to it).
  57. .PP
  58. .VS 8.4
  59. On 32-bit systems, integer values MAX_INT (0x7FFFFFFF) and MIN_INT
  60. (-0x80000000) will be represented as 32-bit values, and integer values
  61. outside that range will be represented as 64-bit values (if that is
  62. possible at all.)
  63. .VE 8.4
  64. .PP
  65. Operands may be specified in any of the following ways:
  66. .IP [1]
  67. As a numeric value, either integer or floating-point.
  68. .IP [2]
  69. As a boolean value, using any form understood by fBstring is booleanfR.
  70. .IP [3]
  71. As a Tcl variable, using standard fB$fR notation.
  72. The variable's value will be used as the operand.
  73. .IP [4]
  74. As a string enclosed in double-quotes.
  75. The expression parser will perform backslash, variable, and
  76. command substitutions on the information between the quotes,
  77. and use the resulting value as the operand
  78. .IP [5]
  79. As a string enclosed in braces.
  80. The characters between the open brace and matching close brace
  81. will be used as the operand without any substitutions.
  82. .IP [6]
  83. As a Tcl command enclosed in brackets.
  84. The command will be executed and its result will be used as
  85. the operand.
  86. .IP [7]
  87. As a mathematical function whose arguments have any of the above
  88. forms for operands, such as fBsin($x)fR.  See below for a list of defined
  89. functions.
  90. .LP
  91. Where the above substitutions occur (e.g. inside quoted strings), they
  92. are performed by the expression's instructions.
  93. However, the command parser may already have performed one round of
  94. substitution before the expression processor was called.
  95. As discussed below, it is usually best to enclose expressions
  96. in braces to prevent the command parser from performing substitutions
  97. on the contents.
  98. .PP
  99. For some examples of simple expressions, suppose the variable
  100. fBafR has the value 3 and
  101. the variable fBbfR has the value 6.
  102. Then the command on the left side of each of the lines below
  103. will produce the value on the right side of the line:
  104. .CS
  105. .ta 6c
  106. fBexpr 3.1 + $a 6.1
  107. expr 2 + "$a.$b" 5.6
  108. expr 4*[llength "6 2"] 8
  109. expr {{word one} < "word $a"} 0fR
  110. .CE
  111. .SH OPERATORS
  112. .PP
  113. The valid operators are listed below, grouped in decreasing order
  114. of precedence:
  115. .TP 20
  116. fB-+~!fR
  117. Unary minus, unary plus, bit-wise NOT, logical NOT.  None of these operators
  118. may be applied to string operands, and bit-wise NOT may be
  119. applied only to integers.
  120. .TP 20
  121. fB*/%fR
  122. Multiply, divide, remainder.  None of these operators may be
  123. applied to string operands, and remainder may be applied only
  124. to integers.
  125. The remainder will always have the same sign as the divisor and
  126. an absolute value smaller than the divisor.
  127. .TP 20
  128. fB+-fR
  129. Add and subtract.  Valid for any numeric operands.
  130. .TP 20
  131. fB<<>>fR
  132. Left and right shift.  Valid for integer operands only.
  133. A right shift always propagates the sign bit.
  134. .TP 20
  135. fB<><=>=fR
  136. Boolean less, greater, less than or equal, and greater than or equal.
  137. Each operator produces 1 if the condition is true, 0 otherwise.
  138. These operators may be applied to strings as well as numeric operands,
  139. in which case string comparison is used.
  140. .TP 20
  141. fB==!=fR
  142. Boolean equal and not equal.  Each operator produces a zero/one result.
  143. Valid for all operand types.
  144. .VS 8.4
  145. .TP 20
  146. fBeqnefR
  147. Boolean string equal and string not equal.  Each operator produces a
  148. zero/one result.  The operand types are interpreted only as strings.
  149. .VE 8.4
  150. .TP 20
  151. fB&fR
  152. Bit-wise AND.  Valid for integer operands only.
  153. .TP 20
  154. fB^fR
  155. Bit-wise exclusive OR.  Valid for integer operands only.
  156. .TP 20
  157. fB|fR
  158. Bit-wise OR.  Valid for integer operands only.
  159. .TP 20
  160. fB&&fR
  161. Logical AND.  Produces a 1 result if both operands are non-zero,
  162. 0 otherwise.
  163. Valid for boolean and numeric (integers or floating-point) operands only.
  164. .TP 20
  165. fB||fR
  166. Logical OR.  Produces a 0 result if both operands are zero, 1 otherwise.
  167. Valid for boolean and numeric (integers or floating-point) operands only.
  168. .TP 20
  169. fIxfB?fIyfB:fIzfR
  170. If-then-else, as in C.  If fIxfR
  171. evaluates to non-zero, then the result is the value of fIyfR.
  172. Otherwise the result is the value of fIzfR.
  173. The fIxfR operand must have a boolean or numeric value.
  174. .LP
  175. See the C manual for more details on the results
  176. produced by each operator.
  177. All of the binary operators group left-to-right within the same
  178. precedence level.  For example, the command
  179. .CS
  180. fBexpr 4*2 < 7fR
  181. .CE
  182. returns 0.
  183. .PP
  184. The fB&&fR, fB||fR, and fB?:fR operators have ``lazy
  185. evaluation'', just as in C, 
  186. which means that operands are not evaluated if they are
  187. not needed to determine the outcome.  For example, in the command
  188. .CS
  189. fBexpr {$v ? [a] : [b]}fR
  190. .CE
  191. only one of fB[a]fR or fB[b]fR will actually be evaluated,
  192. depending on the value of fB$vfR.  Note, however, that this is
  193. only true if the entire expression is enclosed in braces;  otherwise
  194. the Tcl parser will evaluate both fB[a]fR and fB[b]fR before
  195. invoking the fBexprfR command.
  196. .SH "MATH FUNCTIONS"
  197. .PP
  198. Tcl supports the following mathematical functions in expressions, all
  199. of which work solely with floating-point numbers unless otherwise noted:
  200. .DS
  201. .ta 3c 6c 9c
  202. fBabsfR fBcoshfR fBlogfR fBsqrtfR
  203. fBacosfR fBdoublefR fBlog10fR fBsrandfR
  204. fBasinfR fBexpfR fBpowfR fBtanfR
  205. fBatanfR fBfloorfR fBrandfR fBtanhfR
  206. fBatan2fR fBfmodfR fBroundfR fBwidefR
  207. fBceilfR fBhypotfR fBsinfR
  208. fBcosfR fBintfR fBsinhfR
  209. .DE
  210. .PP
  211. .TP
  212. fBabs(fIargfB)fR
  213. Returns the absolute value of fIargfR.  fIArgfR may be either
  214. integer or floating-point, and the result is returned in the same form.
  215. .TP
  216. fBacos(fIargfB)fR
  217. Returns the arc cosine of fIargfR, in the range [fI0fR,fIpifR]
  218. radians. fIArgfR should be in the range [fI-1fR,fI1fR].
  219. .TP
  220. fBasin(fIargfB)fR
  221. Returns the arc sine of fIargfR, in the range [fI-pi/2fR,fIpi/2fR]
  222. radians.  fIArgfR should be in the range [fI-1fR,fI1fR].
  223. .TP
  224. fBatan(fIargfB)fR
  225. Returns the arc tangent of fIargfR, in the range [fI-pi/2fR,fIpi/2fR]
  226. radians.
  227. .TP
  228. fBatan2(fIy, xfB)fR
  229. Returns the arc tangent of fIyfR/fIxfR, in the range [fI-pifR,fIpifR]
  230. radians.  fIxfR and fIyfR cannot both be 0.  If fIxfR is greater
  231. than fI0fR, this is equivalent to fBatan(fIy/xfB)fR.
  232. .TP
  233. fBceil(fIargfB)fR
  234. Returns the smallest integral floating-point value (i.e. with a zero
  235. fractional part) not less than fIargfR.
  236. .TP
  237. fBcos(fIargfB)fR
  238. Returns the cosine of fIargfR, measured in radians.
  239. .TP
  240. fBcosh(fIargfB)fR
  241. Returns the hyperbolic cosine of fIargfR.  If the result would cause
  242. an overflow, an error is returned.
  243. .TP
  244. fBdouble(fIargfB)fR
  245. If fIargfR is a floating-point value, returns fIargfR, otherwise converts
  246. fIargfR to floating-point and returns the converted value.
  247. .TP
  248. fBexp(fIargfB)fR
  249. Returns the exponential of fIargfR, defined as fIefR**fIargfR.
  250. If the result would cause an overflow, an error is returned.
  251. .TP
  252. fBfloor(fIargfB)fR
  253. Returns the largest integral floating-point value (i.e. with a zero
  254. fractional part) not greater than fIargfR.
  255. .TP
  256. fBfmod(fIx, yfB)fR
  257. Returns the floating-point remainder of the division of fIxfR by
  258. fIyfR.  If fIyfR is 0, an error is returned.
  259. .TP
  260. fBhypot(fIx, yfB)fR
  261. Computes the length of the hypotenuse of a right-angled triangle
  262. fBsqrt(fIxfR*fIxfR+fIyfR*fIyfB)fR.
  263. .TP
  264. fBint(fIargfB)fR
  265. .VS 8.4
  266. If fIargfR is an integer value of the same width as the machine
  267. word, returns fIargfR, otherwise
  268. converts fIargfR to an integer (of the same size as a machine word,
  269. i.e. 32-bits on 32-bit systems, and 64-bits on 64-bit systems) by
  270. truncation and returns the converted value.
  271. .VE 8.4
  272. .TP
  273. fBlog(fIargfB)fR
  274. Returns the natural logarithm of fIargfR.  fIArgfR must be a
  275. positive value.
  276. .TP
  277. fBlog10(fIargfB)fR
  278. Returns the base 10 logarithm of fIargfR.  fIArgfR must be a
  279. positive value.
  280. .TP
  281. fBpow(fIx, yfB)fR
  282. Computes the value of fIxfR raised to the power fIyfR.  If fIxfR
  283. is negative, fIyfR must be an integer value.
  284. .TP
  285. fBrand()fR
  286. Returns a pseudo-random floating-point value in the range (fI0fR,fI1fR).  
  287. The generator algorithm is a simple linear congruential generator that
  288. is not cryptographically secure.  Each result from fBrandfR completely
  289. determines all future results from subsequent calls to fBrandfR, so
  290. fBrandfR should not be used to generate a sequence of secrets, such as
  291. one-time passwords.  The seed of the generator is initialized from the
  292. internal clock of the machine or may be set with the fBsrandfR function.
  293. .TP
  294. fBround(fIargfB)fR
  295. If fIargfR is an integer value, returns fIargfR, otherwise converts
  296. fIargfR to integer by rounding and returns the converted value.
  297. .TP
  298. fBsin(fIargfB)fR
  299. Returns the sine of fIargfR, measured in radians.
  300. .TP
  301. fBsinh(fIargfB)fR
  302. Returns the hyperbolic sine of fIargfR.  If the result would cause
  303. an overflow, an error is returned.
  304. .TP
  305. fBsqrt(fIargfB)fR
  306. Returns the square root of fIargfR.  fIArgfR must be non-negative.
  307. .TP
  308. fBsrand(fIargfB)fR
  309. The fIargfR, which must be an integer, is used to reset the seed for
  310. the random number generator of fBrandfR.  Returns the first random
  311. number (see fBrand()fR) from that seed.  Each interpreter has its own seed.
  312. .TP
  313. fBtan(fIargfB)fR
  314. Returns the tangent of fIargfR, measured in radians.
  315. .TP
  316. fBtanh(fIargfB)fR
  317. Returns the hyperbolic tangent of fIargfR.
  318. .TP
  319. fBwide(fIargfB)fR
  320. .VS 8.4
  321. Converts fIargfR to an integer value at least 64-bits wide (by sign-extension
  322. if fIargfR is a 32-bit number) if it is not one already.
  323. .VE 8.4
  324. .PP
  325. In addition to these predefined functions, applications may
  326. define additional functions using fBTcl_CreateMathFuncfR().
  327. .SH "TYPES, OVERFLOW, AND PRECISION"
  328. .PP
  329. All internal computations involving integers are done with the C type
  330. fIlongfR, and all internal computations involving floating-point are
  331. done with the C type fIdoublefR.
  332. When converting a string to floating-point, exponent overflow is
  333. detected and results in a Tcl error.
  334. For conversion to integer from string, detection of overflow depends
  335. on the behavior of some routines in the local C library, so it should
  336. be regarded as unreliable.
  337. In any case, integer overflow and underflow are generally not detected
  338. reliably for intermediate results.  Floating-point overflow and underflow
  339. are detected to the degree supported by the hardware, which is generally
  340. pretty reliable.
  341. .PP
  342. Conversion among internal representations for integer, floating-point,
  343. and string operands is done automatically as needed.
  344. For arithmetic computations, integers are used until some
  345. floating-point number is introduced, after which floating-point is used.
  346. For example,
  347. .CS
  348. fBexpr 5 / 4fR
  349. .CE
  350. returns 1, while
  351. .CS
  352. fBexpr 5 / 4.0fR
  353. fBexpr 5 / ( [string length "abcd"] + 0.0 )fR
  354. .CE
  355. both return 1.25.
  356. Floating-point values are always returned with a ``fB.fR''
  357. or an fBefR so that they will not look like integer values.  For
  358. example,
  359. .CS
  360. fBexpr 20.0/5.0fR
  361. .CE
  362. returns fB4.0fR, not fB4fR.
  363. .SH "STRING OPERATIONS"
  364. .PP
  365. String values may be used as operands of the comparison operators,
  366. although the expression evaluator tries to do comparisons as integer
  367. or floating-point when it can,
  368. .VS 8.4
  369. except in the case of the fBeqfR and fBnefR operators.
  370. .VE 8.4
  371. If one of the operands of a comparison is a string and the other
  372. has a numeric value, the numeric operand is converted back to
  373. a string using the C fIsprintffR format specifier
  374. fB%dfR for integers and fB%gfR for floating-point values.
  375. For example, the commands
  376. .CS
  377. fBexpr {"0x03" > "2"}fR
  378. fBexpr {"0y" < "0x12"}fR
  379. .CE
  380. both return 1.  The first comparison is done using integer
  381. comparison, and the second is done using string comparison after
  382. the second operand is converted to the string fB18fR.
  383. Because of Tcl's tendency to treat values as numbers whenever
  384. possible, it isn't generally a good idea to use operators like fB==fR
  385. when you really want string comparison and the values of the
  386. operands could be arbitrary;  it's better in these cases to use
  387. .VS 8.4
  388. the fBeqfR or fBnefR operators, or
  389. .VE 8.4
  390. the fBstringfR command instead.
  391. .SH "PERFORMANCE CONSIDERATIONS"
  392. .PP
  393. Enclose expressions in braces for the best speed and the smallest
  394. storage requirements.
  395. This allows the Tcl bytecode compiler to generate the best code.
  396. .PP
  397. As mentioned above, expressions are substituted twice:
  398. once by the Tcl parser and once by the fBexprfR command.
  399. For example, the commands
  400. .CS
  401. fBset a 3fR
  402. fBset b {$a + 2}fR
  403. fBexpr $b*4fR
  404. .CE
  405. return 11, not a multiple of 4.
  406. This is because the Tcl parser will first substitute fB$a + 2fR for
  407. the variable fBbfR,
  408. then the fBexprfR command will evaluate the expression fB$a + 2*4fR.
  409. .PP
  410. Most expressions do not require a second round of substitutions.
  411. Either they are enclosed in braces or, if not,
  412. their variable and command substitutions yield numbers or strings
  413. that don't themselves require substitutions.
  414. However, because a few unbraced expressions 
  415. need two rounds of substitutions,
  416. the bytecode compiler must emit
  417. additional instructions to handle this situation.
  418. The most expensive code is required for
  419. unbraced expressions that contain command substitutions.
  420. These expressions must be implemented by generating new code
  421. each time the expression is executed.
  422. .SH EXAMPLES
  423. Define a procedure that computes an "interesting" mathematical
  424. function:
  425. .CS
  426. proc calc {x y} {
  427.     fBexprfR { ($x*$x - $y*$y) / exp($x*$x + $y*$y) }
  428. }
  429. .CE
  430. .PP
  431. Convert polar coordinates into cartesian coordinates:
  432. .CS
  433. # convert from ($radius,$angle)
  434. set x [fBexprfR { $radius * cos($angle) }]
  435. set y [fBexprfR { $radius * sin($angle) }]
  436. .CE
  437. .PP
  438. Convert cartesian coordinates into polar coordinates:
  439. .CS
  440. # convert from ($x,$y)
  441. set radius [fBexprfR { hypot($y, $x) }]
  442. set angle  [fBexprfR { atan2($y, $x) }]
  443. .CE
  444. .PP
  445. Print a message describing the relationship of two string values to
  446. each other:
  447. .CS
  448. puts "a and b are [fBexprfR {$a eq $b ? {equal} : {different}}]"
  449. .CE
  450. .PP
  451. Set a variable to whether an environment variable is both defined at
  452. all and also set to a true boolean value:
  453. .CS
  454. set isTrue [fBexprfR {
  455.     [info exists ::env(SOME_ENV_VAR)] &&
  456.     [string is true -strict $::env(SOME_ENV_VAR)]
  457. }]
  458. .CE
  459. .PP
  460. Generate a random integer in the range 0..99 inclusive:
  461. .CS
  462. set randNum [fBexprfR { int(100 * rand()) }]
  463. .CE
  464. .SH "SEE ALSO"
  465. array(n), for(n), if(n), string(n), Tcl(n), while(n)
  466. .SH KEYWORDS
  467. arithmetic, boolean, compare, expression, fuzzy comparison