⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 perlnumber.pod

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 POD
字号:
=head1 NAMEperlnumber - semantics of numbers and numeric operations in Perl=head1 SYNOPSIS    $n = 1234;		    # decimal integer    $n = 0b1110011;	    # binary integer    $n = 01234;		    # octal integer    $n = 0x1234;	    # hexadecimal integer    $n = 12.34e-56;	    # exponential notation    $n = "-12.34e56";	    # number specified as a string    $n = "1234";	    # number specified as a string=head1 DESCRIPTIONThis document describes how Perl internally handles numeric values.Perl's operator overloading facility is completely ignored here.  Operatoroverloading allows user-defined behaviors for numbers, such as operationsover arbitrarily large integers, floating points numbers with arbitraryprecision, operations over "exotic" numbers such as modular arithmetic orp-adic arithmetic, and so on.  See L<overload> for details.=head1 Storing numbersPerl can internally represent numbers in 3 different ways: as nativeintegers, as native floating point numbers, and as decimal strings.Decimal strings may have an exponential notation part, as in C<"12.34e-56">.I<Native> here means "a format supported by the C compiler which was usedto build perl".The term "native" does not mean quite as much when we talk about nativeintegers, as it does when native floating point numbers are involved.The only implication of the term "native" on integers is that the limits forthe maximal and the minimal supported true integral quantities are close topowers of 2.  However, "native" floats have a most fundamentalrestriction: they may represent only those numbers which have a relatively"short" representation when converted to a binary fraction.  For example,0.9 cannot be represented by a native float, since the binary fractionfor 0.9 is infinite:  binary0.1110011001100...with the sequence C<1100> repeating again and again.  In addition to thislimitation,  the exponent of the binary number is also restricted when itis represented as a floating point number.  On typical hardware, floatingpoint values can store numbers with up to 53 binary digits, and with binaryexponents between -1024 and 1024.  In decimal representation this is closeto 16 decimal digits and decimal exponents in the range of -304..304.The upshot of all this is that Perl cannot store a number like12345678901234567 as a floating point number on such architectures withoutloss of information.Similarly, decimal strings can represent only those numbers which have afinite decimal expansion.  Being strings, and thus of arbitrary length, thereis no practical limit for the exponent or number of decimal digits for thesenumbers.  (But realize that what we are discussing the rules for just theI<storage> of these numbers.  The fact that you can store such "large" numbersdoes not mean that the I<operations> over these numbers will use allof the significant digits.See L<"Numeric operators and numeric conversions"> for details.)In fact numbers stored in the native integer format may be stored eitherin the signed native form, or in the unsigned native form.  Thus the limitsfor Perl numbers stored as native integers would typically be -2**31..2**32-1,with appropriate modifications in the case of 64-bit integers.  Again, thisdoes not mean that Perl can do operations only over integers in this range:it is possible to store many more integers in floating point format.Summing up, Perl numeric values can store only those numbers which havea finite decimal expansion or a "short" binary expansion.=head1 Numeric operators and numeric conversionsAs mentioned earlier, Perl can store a number in any one of three formats,but most operators typically understand only one of those formats.  Whena numeric value is passed as an argument to such an operator, it will beconverted to the format understood by the operator.Six such conversions are possible:  native integer        --> native floating point	(*)  native integer        --> decimal string  native floating_point --> native integer		(*)  native floating_point --> decimal string		(*)  decimal string        --> native integer  decimal string        --> native floating point	(*)These conversions are governed by the following general rules:=over 4=item *If the source number can be represented in the target form, thatrepresentation is used.=item *If the source number is outside of the limits representable in the target form,a representation of the closest limit is used.  (I<Loss of information>)=item *If the source number is between two numbers representable in the target form,a representation of one of these numbers is used.  (I<Loss of information>)=item *In C<< native floating point --> native integer >> conversions the magnitudeof the result is less than or equal to the magnitude of the source.(I<"Rounding to zero".>)=item *If the C<< decimal string --> native integer >> conversion cannot be donewithout loss of information, the result is compatible with the conversionsequence C<< decimal_string --> native_floating_point --> native_integer >>.In particular, rounding is strongly biased to 0, though a number likeC<"0.99999999999999999999"> has a chance of being rounded to 1.=backB<RESTRICTION>: The conversions marked with C<(*)> above involve stepsperformed by the C compiler.  In particular, bugs/features of the compilerused may lead to breakage of some of the above rules.=head1 Flavors of Perl numeric operationsPerl operations which take a numeric argument treat that argument in oneof four different ways: they may force it to one of the integer/floating/string formats, or they may behave differently depending on the format ofthe operand.  Forcing a numeric value to a particular format does notchange the number stored in the value.All the operators which need an argument in the integer format treat theargument as in modular arithmetic, e.g., C<mod 2**32> on a 32-bitarchitecture.  C<sprintf "%u", -1> therefore provides the same result asC<sprintf "%u", ~0>.=over 4=item Arithmetic operatorsThe binary operators C<+> C<-> C<*> C</> C<%> C<==> C<!=> C<E<gt>> C<E<lt>>C<E<gt>=> C<E<lt>=> and the unary operators C<-> C<abs> and C<--> willattempt to convert arguments to integers.  If both conversions are possiblewithout loss of precision, and the operation can be performed withoutloss of precision then the integer result is used.  Otherwise arguments areconverted to floating point format and the floating point result is used.The caching of conversions (as described above) means that the integerconversion does not throw away fractional parts on floating point numbers.=item ++C<++> behaves as the other operators above, except that if it is a stringmatching the format C</^[a-zA-Z]*[0-9]*\z/> the string increment describedin L<perlop> is used.=item Arithmetic operators during C<use integer>In scopes where C<use integer;> is in force, nearly all the operators listedabove will force their argument(s) into integer format, and return an integerresult.  The exceptions, C<abs>, C<++> and C<-->, do not change theirbehavior with C<use integer;>=item Other mathematical operatorsOperators such as C<**>, C<sin> and C<exp> force arguments to floating pointformat.=item Bitwise operatorsArguments are forced into the integer format if not strings.=item Bitwise operators during C<use integer>forces arguments to integer format. Also shift operations internally usesigned integers rather than the default unsigned.=item Operators which expect an integerforce the argument into the integer format.  This is applicableto the third and fourth arguments of C<sysread>, for example.=item Operators which expect a stringforce the argument into the string format.  For example, this isapplicable to C<printf "%s", $value>.=backThough forcing an argument into a particular form does not change thestored number, Perl remembers the result of such conversions.  Inparticular, though the first such conversion may be time-consuming,repeated operations will not need to redo the conversion.=head1 AUTHORIlya Zakharevich C<ilya@math.ohio-state.edu>Editorial adjustments by Gurusamy Sarathy <gsar@ActiveState.com>Updates for 5.8.0 by Nicholas Clark <nick@ccl4.org>=head1 SEE ALSOL<overload>, L<perlop>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -