免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3964 | 回复: 10
打印 上一主题 下一主题

||和or有区别吗? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-03-29 11:32 |只看该作者 |倒序浏览
学了俩月perl,越学越迷糊~
现在对这个也不理解了~~~,书上说:
Table 1-1. Logical Operators
$a && $b And $a if $a is false, $b otherwise
$a || $b  Or  $a if $a is true, $b otherwise
$a and $b And $a if $a is false, $b otherwise
$a or $b Or  $a if $a is true, $b otherwise

还有下面的一段话

Like C, Perl provides the && (logical AND) and || (logical OR) operators. They
evaluate from left to right (with && having slightly higher precedence than ||) test-
ing the truth of the statement. These operators are known as short-circuit opera-
tors because they determine the truth of the statement by evaluating the fewest
number of operands possible. For example, if the left operand of an && operator is
false, the right operand is never evaluated because the result of the operator is
false regardless of the value of the right operand.

按这个理解,||与 or 应该是等价的啊,可是,为什么下面的输出不一致?
  1. my $a = 0;
  2. $a = $a or 1;
  3. print $a;
  4. $a = $a || 1;
  5. print $a;
复制代码
如果将第一行替换为my $a;然后,我也不知道在$a = $a or 1发生了什么,
还有一个问题是,能否解释下$0与__FILE__有什么区别,我知道$0可以"$0="aa""修改,__FILE__是系统的,
在符号表里,但是有什么区别呢?怎么会引入这俩??
还有就是另一个帖子里看到的"//"是什么东西,在哪看到的?
等等还有好多迷糊的地方,总感觉,perl我写出来,怎么执行,就听天由命了~~
是理解不深入?怎么办?或者有点资料推荐?

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2012-03-29 11:41 |只看该作者
myeverthing 发表于 2012-03-29 11:32
按这个理解,||与 or 应该是等价的啊


它们的优先级是不同的。

论坛徽章:
0
3 [报告]
发表于 2012-03-29 11:46 |只看该作者
好吧,我承认没有完整看完过书,只是用到去查~~,但是,为什么要优先级不一样呢~~

论坛徽章:
0
4 [报告]
发表于 2012-03-29 11:48 |只看该作者
我用括号把优先级表示下
  1. ($a = $a )or 1;
  2. $a = ($a || 1);
复制代码

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
5 [报告]
发表于 2012-03-29 11:49 |只看该作者
本帖最后由 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";

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
6 [报告]
发表于 2012-03-29 11:52 |只看该作者
myeverthing 发表于 2012-03-29 11:32
还有一个问题是,能否解释下$0与__FILE__有什么区别,我知道$0可以"$0="aa""修改,__FILE__是系统的,
在符号表里,但是有什么区别呢?怎么会引入这俩??


$0 的解释在 perlvar 中,__FILE__ 的解释在 perldata 中,自己比较下它们有什么不同吧。

还有就是另一个帖子里看到的"//"是什么东西,在哪看到的?


// 这个在 perlop 中有解释,想知道就去看看吧。

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
7 [报告]
发表于 2012-03-29 11:54 |只看该作者
myeverthing 发表于 2012-03-29 11:46
好吧,我承认没有完整看完过书,只是用到去查~~,


除非你只是偶尔用一下,不然的话这种方法是最浪费时间的,效果还很差。

论坛徽章:
0
8 [报告]
发表于 2012-03-29 11:54 |只看该作者
恩,谢谢各位~~~,回复真及时~
看来还得加强学习啊~

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
9 [报告]
发表于 2012-03-29 12:18 |只看该作者
myeverthing 发表于 2012-03-29 11:54
恩,谢谢各位~~~,回复真及时~
看来还得加强学习啊~


有空还是别泡论坛多看点书吧

论坛徽章:
0
10 [报告]
发表于 2012-03-30 12:31 |只看该作者
对优先级不确定的时候,可以:

  perl -MO=Deparse,-p foo.pl

做语法检查,并显示解释程序对优先级的理解。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP