4

私が次のものを持っていると仮定します:

my @net = (`echo "HELLO" > file`,
           `less file`);

実行順序が 0..N からであることは保証されていますか (配列の最初の要素が最初に実行され、次に 2 番目の要素が実行されるなど)?

私はこれをテストしましたが、これが実際に起こることですが、それを当てにできますか?

ありがとう、

4

1 に答える 1

6

Yes. Each of the comma-separated items in your brackets () on the right-hand side are terms. These have the highest precedence in Perl, and evaluate left-to-right. Backticks are quote-like operators.

于 2012-09-02T10:21:50.870 に答える