免费注册 查看新帖 |

Chinaunix

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

perl下按位与时&,变量为什么不会自动转为整型? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-08-29 12:14 |只看该作者 |倒序浏览
  1. $cat = "168";
  2. $dog = "255";

  3. print $cat & $dog; #输出040
  4. print $cat & $dog + 0; #加0是为了将其转为数值运算,输出168
复制代码
这个是不是设计到perl上下文的概念?断断续续自学perl,没事做点小程序玩玩,对perl理解不深入

论坛徽章:
46
15-16赛季CBA联赛之四川
日期:2018-03-27 11:59:132015年亚洲杯之沙特阿拉伯
日期:2015-04-11 17:31:45天蝎座
日期:2015-03-25 16:56:49双鱼座
日期:2015-03-25 16:56:30摩羯座
日期:2015-03-25 16:56:09巳蛇
日期:2015-03-25 16:55:30卯兔
日期:2015-03-25 16:54:29子鼠
日期:2015-03-25 16:53:59申猴
日期:2015-03-25 16:53:29寅虎
日期:2015-03-25 16:52:29羊年新春福章
日期:2015-03-25 16:51:212015亚冠之布里斯班狮吼
日期:2015-07-13 10:44:56
2 [报告]
发表于 2010-08-29 14:19 |只看该作者
根据上下文实际上是两个不同的操作符,上面是字符串的位操作符,下面的是数字位操作符。具体见 perldoc perlop 中的 &

论坛徽章:
0
3 [报告]
发表于 2010-08-29 21:58 |只看该作者
谢谢解答,通过查perldoc,答案如下:
Bitstrings of any size may be manipulated by the bitwise operators (~ | & ^).

If the operands to a binary bitwise op are strings of different sizes, | and ^ ops act as though the shorter operand had additional zero bits on the right, while the & op acts as though the longer operand were truncated to the length of the shorter. The granularity for such extension or truncation is one or more bytes.

    # ASCII-based examples
    print "j p \n" ^ " a h";            # prints "JAPH\n"
    print "JA" | "  ph\n";              # prints "japh\n"
    print "japh\nJunk" & '_____';       # prints "JAPH\n";
    print 'p N$' ^ " E<H\n";            # prints "Perl\n";

If you are intending to manipulate bitstrings, be certain that you're supplying bitstrings: If an operand is a number, that will imply a numeric bitwise operation. You may explicitly show which type of operation you intend by using "" or 0+, as in the examples below.

    $foo =  150  |  105;        # yields 255  (0x96 | 0x69 is 0xFF)
    $foo = '150' |  105;        # yields 255
    $foo =  150  | '105';       # yields 255
    $foo = '150' | '105';       # yields string '155' (under ASCII)

    $baz = 0+$foo & 0+$bar;     # both ops explicitly numeric
    $biz = "$foo" ^ "$bar";     # both ops explicitly stringy


还有从FAQ里查到的:
Why doesn't & work the way I want it to?
  The behavior of binary arithmetic operators depends on whether they're
  used on numbers or strings. The operators treat a string as a series of
  bits and work with that (the string "3" is the bit pattern 00110011).
  The operators work with the binary form of a number (the number 3 is
  treated as the bit pattern 00000011).

  So, saying "11 & 3" performs the "and" operation on numbers (yielding
  3). Saying "11" & "3" performs the "and" operation on strings (yielding
  "1").
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP