- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2012-03-29 11:53 编辑
回复 1# myeverthing
or 与 || 原则上是等价的,但
1. precedence 优先权不同
2. $a为0时,若0就是所要之值...,用 // 来解决
$ perldoc perlop
...
left &
left | ^
left &&
left || //
nonassoc .. ...
right ?:
right = += -= *= etc.
left , =>
nonassoc list operators (rightward)
right not
left and
left or xor
...
C-style Logical Defined-Or
Although it has no direct equivalent in C, Perl's "//" operator is
related to its C-style or. In fact, it's exactly the same as "||",
except that it tests the left hand side's definedness instead of its
truth. Thus, "$a // $b" is similar to "defined($a) || $b" (except that
it returns the value of $a rather than the value of "defined($a)") and
is exactly equivalent to "defined($a) ? $a : $b". This is very useful
for providing default values for variables. If you actually want to
test if at least one of $a and $b is defined, use "defined($a // $b)".
The "||", "//" and "&&" operators return the last value evaluated
(unlike C's "||" and "&&", which return 0 or 1). Thus, a reasonably
portable way to find out the home directory might be:
$home = $ENV{'HOME'} // $ENV{'LOGDIR'} //
(getpwuid($<))[7] // die "You're homeless!\n";
|
|