Perl 語言中的運算子

來源:互聯網
上載者:User

一、算術運算子 :+(加)、-(減)、*(乘)、/(除)、**(乘冪)、%(取餘)、-(單目負)

  (1)乘冪的基數不能為負,如 (-5) ** 2.5 # error;
  (2)乘冪結果不能超出電腦表示的限制,如10 ** 999999 # error
  (3)取餘的運算元如不是整數,四捨五入成整數後運算;運算子右側不能為零
  (4)單目負可用於變數: - $y ; # 等效於 $y * -1
  (5)對應有 +=、-=、*=、/=、**=、%=

二、整數比較子

Table 1. 整數比較子

操作符 描述
< 小於
> 大於
== 等於
<= 小於等於
>= 大於等於
!= 不等於
<=> 比較,返回 1, 0, -1

操作符<=>結果為: 
0 - 兩個值相等 
1 - 第一個值大 
1 - 第二個值大 

三、字串比較運算子 

Table 2. 字串比較運算子
操作符 描述
lt 小於
gt 大於
eq 等於
le 小於等於
ge 大於等於
ne 不等於
cmp 比較,返回 1, 0, or -1

四、邏輯運算子 

邏輯或:$a || $b 或 $a or $b 
邏輯與:$a && $b 或 $a and $b 
邏輯非:! $a 或 not $a 
邏輯異或:$a xor $b 

五、位元運算符 

位與:& 
位或:| 
位非:~ 
位異或:^ 
左移:$x << 1 
右移:$x >> 2 
註:不要將&用於負整數,因為PERL將會把它們轉化為無符號數。 

六、賦值運算子 

Table 3. 賦值運算子

操作符 描述
= Assignment only
+= Addition and assignment
-= Subtraction and assignment
*= Multiplication and assignment
/= Division and assignment
%= Remainder and assignment
**= Exponentiation and assignment
&= Bitwise AND and assignment
|= Bitwise OR and assignment
^= Bitwise XOR and assignment

Table 4. 賦值運算子例子

運算式 等效運算式
$a = 1; none (basic assignment)
$a -= 1; $a = $a - 1;
$a *= 2; $a = $a * 2;
$a /= 2; $a = $a / 2;
$a %= 2; $a = $a % 2;
$a **= 2; $a = $a ** 2;
$a &= 2; $a = $a & 2;
$a |= 2; $a = $a | 2;
$a ^= 2; $a = $a ^ 2;

註:
1. =可在一個指派陳述式中出現多次,如:
  $value1 = $value2 = "a string";
2. =作為子運算式
  ($a = $b) += 3;
  等價於
  $a = $b;
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.