perlglossary - Perl словарь

Larry Wall, Tom Christiansen & Jon Orwant, “perlglossary - Perl Glossary”, public translation into Russian from English More about this translation.

See also 34 similar translations

Translate into another language.

Participants

zibsoft60 points
Irina267 points
dayfuaim2 points
Join Translated.by to translate! If you already have a Translated.by account, please sign in.
If you do not want to register an account, you can sign in with OpenID.
Pages: ← previous Ctrl next next untranslated

perlglossary - Perl Glossary

perlglossary - Perl словарь

History of edits (Latest: zibsoft 1 year, 5 months ago) §

=head1 NAME

=head1 НАЗВАНИЕ

History of edits (Latest: zibsoft 1 year, 5 months ago) §

perlglossary - Perl Glossary

perlglossary - Perl словарь

History of edits (Latest: zibsoft 1 year, 5 months ago) §

=head1 DESCRIPTION

=head1 ОПИСАНИЕ

History of edits (Latest: zibsoft 1 year, 5 months ago) §

A glossary of terms (technical and otherwise) used in the Perl documentation.

Словарь терминов (технических и иных), используемых в Perl документации.

History of edits (Latest: dayfuaim 6 months ago) §

Other useful sources include the Free On-Line Dictionary of Computing

Другие полезные источники включают бесплатный on-line словарь

History of edits (Latest: zibsoft 1 year, 5 months ago) §

L<http://foldoc.doc.ic.ac.uk/foldoc/index.html>, the Jargon File

L<http://foldoc.doc.ic.ac.uk/foldoc/index.html>, файл жаргона

History of edits (Latest: zibsoft 1 year, 5 months ago) §

L<http://catb.org/~esr/jargon/>, and Wikipedia L<http://www.wikipedia.org/>.

L<http://catb.org/~esr/jargon/>, и Википедия L<http://www.wikipedia.org/>.

History of edits (Latest: zibsoft 1 year, 5 months ago) §

=head2 A

=head2 A

History of edits (Latest: zibsoft 1 year, 5 months ago) §

=over 4

=over 4

History of edits (Latest: zibsoft 1 year, 5 months ago) §

=item accessor methods

=item accessor methods (методы доступа)

History of edits (Latest: zibsoft 1 year, 5 months ago) §

A L</method> used to indirectly inspect or update an L</object>'s

L</method> используется для косвенной проверки или обновления L</object>

History of edits (Latest: zibsoft 1 year, 5 months ago) §

state (its L<instance variables|/instance variable>).

состояние (L<instance variables|/instance variable>).

History of edits (Latest: zibsoft 1 year, 5 months ago) §

=item actual arguments

The L<scalar values|/scalar value> that you supply to a L</function>

or L</subroutine> when you call it. For instance, when you call

C<power("puff")>, the string C<"puff"> is the actual argument. See

also L</argument> and L</formal arguments>.

=item address operator

Some languages work directly with the memory addresses of values, but

this can be like playing with fire. Perl provides a set of asbestos

gloves for handling all memory management. The closest to an address

operator in Perl is the backslash operator, but it gives you a L</hard

reference>, which is much safer than a memory address.

=item algorithm

A well-defined sequence of steps, clearly enough explained that even a

computer could do them.

компьютер мог эих выполнить

History of edits (Latest: Irina26 1 year, 4 months ago) §

=item alias

A nickname for something, which behaves in all ways as though you'd

used the original name instead of the nickname. Temporary aliases are

implicitly created in the loop variable for C<foreach> loops, in the

C<$_> variable for L<map|perlfunc/map> or L<grep|perlfunc/grep>

operators, in C<$a> and C<$b> during L<sort|perlfunc/sort>'s

comparison function, and in each element of C<@_> for the L</actual

arguments> of a subroutine call. Permanent aliases are explicitly

created in L<packages|/package> by L<importing|/import> symbols or by

assignment to L<typeglobs|/typeglob>. Lexically scoped aliases for

package variables are explicitly created by the L<our|perlfunc/our>

declaration.

=item alternatives

A list of possible choices from which you may select only one, as in

Pages: ← previous Ctrl next next untranslated