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

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.)

主站蜘蛛池模板: 罗城| 旺苍县| 越西县| 塘沽区| 长治县| 西盟| 平顺县| 贵德县| 江阴市| 勃利县| 元氏县| 洛扎县| 德清县| 舟曲县| 鹤山市| 大田县| 潼关县| 旌德县| 永登县| 屯留县| 桓仁| 鄂州市| 栾城县| 彰武县| 十堰市| 高陵县| 玛多县| 千阳县| 贵南县| 无极县| 兴城市| 石台县| 杭锦后旗| 广水市| 莎车县| 扶风县| 平度市| 阳信县| 柘城县| 柳江县| 英山县|