免费注册 查看新帖 |

Chinaunix

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

Learning Perl中的小程序求解 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-08 17:35 |只看该作者 |倒序浏览
这个程序的题目是
Modify the program from the previous exercise so that each file specified on the command line has its lines individually reversed.
其中的 previous exercise
是Write a program that acts like cat, but reverses the order of the lines of all the lines from all the files specified on the command line or all the lines from standard input if no files are specified.

然后答案是
@ARGV = reverse @ARGV;
print reverse <>;
看起来是应该实现的输入
123
456
返回
654
321
但是实际不是
456
123

论坛徽章:
0
2 [报告]
发表于 2005-11-08 18:40 |只看该作者
Modify the program from the previous exercise so that each file specified on the command line has its lines individually reversed.
这里的意思是说,把文件里的每行独自反转输出,就是每行从后往前输出。


Write a program that acts like cat, but reverses the order of the lines of all the lines from all the files specified on the command line or all the lines from standard input if no files are specified.
这里的意思是说,把你从命令行或标准输入里接受到的行,反转顺序再输出,就是把文件的行,从底部往顶部输出。

这样就很容易做了吧。

论坛徽章:
0
3 [报告]
发表于 2005-11-08 19:02 |只看该作者
是啊  我理解的和你一样
但是结果不一样的

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
4 [报告]
发表于 2005-11-08 19:58 |只看该作者
reverse碰到array..把 从index最大的开始读取..
<>这个返回是array...所以...得到
456
123
请多想想..

论坛徽章:
0
5 [报告]
发表于 2005-11-08 20:48 |只看该作者
原帖由 Tiger_cn 于 2005-11-8 19:02 发表
是啊  我理解的和你一样
但是结果不一样的


你理解的才不是和她的一样呢。


  1. @ARGV = reverse @ARGV;
  2. print reverse <>;
复制代码


reverse是区分上下文环境的,前者是列表上下文,reverse的作用是把列表元素的order反一下。
后者位于标量上下文,reverse把标量字符的位置反一下。

[ 本帖最后由 兰花仙子 于 2005-11-8 20:52 编辑 ]

论坛徽章:
0
6 [报告]
发表于 2005-11-08 21:06 |只看该作者
输入
123
456
然后是怎么停止输入了啊,我输入123回车输入456,回车.还要输入,怎么样表示输入完成了

论坛徽章:
0
7 [报告]
发表于 2005-11-08 21:38 |只看该作者
原帖由 poize 于 2005-11-8 21:06 发表
输入
123
456
然后是怎么停止输入了啊,我输入123回车输入456,回车.还要输入,怎么样表示输入完成了


ctrl+D嘛

论坛徽章:
0
8 [报告]
发表于 2005-11-08 21:42 |只看该作者
原来是ctrL+D,我还以为是+Z,没办法,无奈+C,结果就结束了

论坛徽章:
0
9 [报告]
发表于 2005-11-08 21:43 |只看该作者
原帖由 poize 于 2005-11-8 21:42 发表
原来是ctrL+D,我还以为是+Z,没办法,无奈+C,结果就结束了


人生诸多无奈哦

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
10 [报告]
发表于 2005-11-08 22:11 |只看该作者
Ctrl+C 相当于killall -TERM,Ctrl+Z相当于bg
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP