免费注册 查看新帖 |

Chinaunix

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

reverse的疑问 [复制链接]

论坛徽章:
5
技术图书徽章
日期:2014-04-18 08:52:38午马
日期:2014-04-30 13:28:11摩羯座
日期:2014-11-07 13:34:122015年亚洲杯之日本
日期:2015-03-12 14:01:4915-16赛季CBA联赛之北京
日期:2017-06-28 17:25:56
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-10-31 16:41 |只看该作者 |倒序浏览
my $a='ac';
print reverse($a),"\n";
my $b=reverse($a);
print $b

第一个打印的还是‘ac’ ,第二个打印的就是倒序(‘ca’)了,这是为什么啊 ?

论坛徽章:
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
2 [报告]
发表于 2013-10-31 17:30 |只看该作者
本帖最后由 jason680 于 2013-10-31 17:45 编辑

回复 1# murdercool

  reverse($a),"\n";
change to
  reverse($a)."\n";

$ perldoc -f reverse
    reverse LIST
            In list context, returns a list value consisting of the elements
            of LIST in the opposite order. In scalar context, concatenates
            the elements of LIST and returns a string value with all
            characters in the opposite order.

                print join(", ", reverse "world", "Hello"); # Hello, world

                print scalar reverse "dlrow ,", "olleH";    # Hello, world

            Used without arguments in scalar context, reverse() reverses $_.

                $_ = "dlrow ,olleH";
                print reverse;                              # No output, list context
                print scalar reverse;                       # Hello, world

            Note that reversing an array to itself (as in "@a = reverse @a")
            will preserve non-existent elements whenever possible, i.e., for
            non magical arrays or tied arrays with "EXISTS" and "DELETE"
            methods.

            This operator is also handy for inverting a hash, although there
            are some caveats. If a value is duplicated in the original hash,
            only one of those can be represented as a key in the inverted
            hash. Also, this has to unwind one hash and build a whole new
            one, which may take some time on a large hash, such as from a
            DBM file.

                %by_name = reverse %by_address;  # Invert the hash

   

论坛徽章:
5
技术图书徽章
日期:2014-04-18 08:52:38午马
日期:2014-04-30 13:28:11摩羯座
日期:2014-11-07 13:34:122015年亚洲杯之日本
日期:2015-03-12 14:01:4915-16赛季CBA联赛之北京
日期:2017-06-28 17:25:56
3 [报告]
发表于 2013-10-31 18:42 |只看该作者
了解了   thx!!!回复 2# jason680


   

求职 : 软件工程师
论坛徽章:
3
程序设计版块每日发帖之星
日期:2015-10-07 06:20:00程序设计版块每日发帖之星
日期:2015-12-13 06:20:00程序设计版块每日发帖之星
日期:2016-05-05 06:20:00
4 [报告]
发表于 2013-10-31 19:40 |只看该作者
好久不写代码,前几天就是因为 print reverse 不出东西,又写了个 string-reverse. 这个帖子让我想起来了 reverse 在明确的标量环境中才能反转字符串。

论坛徽章:
3
CU十二周年纪念徽章
日期:2013-10-24 15:41:34子鼠
日期:2013-12-14 14:57:19射手座
日期:2014-04-25 21:23:23
5 [报告]
发表于 2013-10-31 21:11 |只看该作者
了解上下文不是一件容易的事

论坛徽章:
5
丑牛
日期:2014-01-21 08:26:26卯兔
日期:2014-03-11 06:37:43天秤座
日期:2014-03-25 08:52:52寅虎
日期:2014-04-19 11:39:48午马
日期:2014-08-06 03:56:58
6 [报告]
发表于 2013-11-01 13:57 |只看该作者
这个帖子让我学习了 reverse

论坛徽章:
1
CU十二周年纪念徽章
日期:2013-10-24 15:41:34
7 [报告]
发表于 2013-11-26 11:43 |只看该作者
学习了!

以后会注意这个问题,多谢

论坛徽章:
0
8 [报告]
发表于 2013-12-01 13:20 |只看该作者
#   输入文件是            输出文件是
#   1 2 3 4 5             5 4
#   2 3 4 5                5 4 3
#   3 4 5                   5 4 3 2
#   4 5                      5 4 3 2 1      
##############################################################
#  -----这里是因为在标量上下文中reverse反转字符串,但是为什么还会反转链表呢?reverse产生了2次作用?

while(my $line = reverse <>){
    print $line;
}
求指点啊

论坛徽章:
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
9 [报告]
发表于 2013-12-02 10:36 |只看该作者
回复 8# xp1842

<> will read all data for reverse
1.  to SCALAR(string) will be  
  "1 2 3 4 5\n2 3 4 5\n3 4 5\n4 5\n"
2. reverse it
"\n5 4\n5 4 3\n5 4 3 2\n 5 4 3 2 1"

you can try this to see what's happen
my $line = reverse <>;
print ">>>$line<<<<";



BTW, reverse string with single line
while(my $line = <>){
    chomp $line;
    print scalar reverse($line), "\n";
}
   

论坛徽章:
0
10 [报告]
发表于 2013-12-02 17:44 |只看该作者
回复 9# jason680
谢谢指点 !learning perl上写while(<>每次返回一行,但是在这里却将所有的内容返回给reverse,确实很让我这个初学者迷惑啊。 毕竟厚度有限,深入不到所有细节和情况

   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP