官术网_书友最值得收藏!

  • Perl 6 Deep Dive
  • Andrew Shitov
  • 396字
  • 2021-07-03 00:05:51

Rational data type

In Perl 6, a special type Rat exists to store the rational numbers. In many cases, Rat will be used when you deal with floating-point numbers. Internally, the Rat value is represented by a pair of integer values, numerators, and denominators. Thus, any Rat number is a rational value equal to the division N/D. The integer numerator part is a value that can be arbitrarily long. The denominator part is a 64-bit integer.

Rat values appear as soon as you have a constant with the decimal point without an exponential part. Consider the following example:

say 3.14;

The 3.14 literal creates a Rat value here.

There is another syntax to create a Rat value: use the slash as in division and, optionally, enclose a number in the pair of angle brackets, as shown here:

say 1/2;
say <1/2>;

Also, you may use Unicode characters for fractions. For example, the following line will create a Rat number equal to 0.5:

say ?;

The internal structure of Rat values provides a fantastic ability for precise calculations. Unlike many other languages, where a floating-point arithmetic uses the IEEE numbers with limited precision, in Perl 6, the use of Rat numbers helps to avoid rounding errors when working with small numbers or, for example, with two numbers so close to each other that they cannot be compared precisely using the IEEE representations.

In the following examples, we will use the Rat numbers:

say 1/2 + 1/4 + 1/8 + 1/16;
say 0.1 + 0.2 - 0.3;

The last example is interesting because it prints 0 in Perl 6. Perl 6 uses Rat for calculations, and internally treats the values as 1/10, 2/10, and 3/10. Thus, the full sum of 0.1 + 0.2 - 0.3 is equivalent to 1/10 + 2/10 - 3/10, which results in a Rat value of 0/10, which is zero. In many other languages that use floating-point numbers, including Perl 5, the same calculation will not produce zero. The result would be small, but still non-zero; for example, 5.55111512312578e-17.

The advantage of using Rat for precise calculations is obvious. For example, in financial calculations, you may use Rat numbers to avoid rounding errors. (In many cases, though, in the financial calculation, you may use integers and count in cents; so, instead of keeping 9.99 € as a floating-point number, operate with 999 cents instead.)

主站蜘蛛池模板: 泰州市| 泰顺县| 平乐县| 普定县| 庆元县| 黄冈市| 洛浦县| 邹城市| 苍梧县| 泽普县| 永济市| 原阳县| 同仁县| 锦州市| 郯城县| 长沙市| 格尔木市| 无为县| 寻乌县| 建宁县| 咸丰县| 遂川县| 宁波市| 镇巴县| 洛扎县| 四会市| 阳东县| 瑞安市| 凌源市| 东辽县| 定州市| 资中县| 潢川县| 睢宁县| 宁河县| 阳信县| 沈阳市| 布拖县| 五家渠市| 南溪县| 临汾市|