Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید










3.18. Comma Operators



Binary "," is the comma operator. In scalar context it evaluates
its left argument in void context, throws that value away, then evaluates its right
argument in scalar context and returns that value. This is just like C''s comma operator.
For example:


$a = (1, 3);


assigns 3 to $a. Do not confuse the scalar context use with the
list context use. In list context, a comma is just the list argument
separator, and inserts both its arguments into the LIST. It does
not throw any values away.

For example, if you change the previous example to:


@a = (1, 3);


you are constructing a two-element list, while:

atan2(1, 3);


is calling the function atan2 with two arguments.


The => digraph is mostly just a synonym for the comma operator.
It''s useful for documenting arguments that come in pairs. It also
forces any identifier to its immediate left to be interpreted as a string.






/ 875