免费注册 查看新帖 |

Chinaunix

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

来自perlmonk的怪问题! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-03-30 20:03 |只看该作者 |倒序浏览
  1. use strict;
  2. #use warnings;

  3. for my $i (1 .. 20)
  4. {
  5.     isodd( $i );
  6.     print "$i\n";
  7. }

  8. sub isodd
  9. {
  10.     my $i = shift;
  11.     next if int( $i / 2 ) * 2 == $i;
  12.     return;
  13. }
复制代码


这段代码没有使用warnings

注意在sub中使用的next,应该是在for中起了作用!

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
2 [报告]
发表于 2006-03-31 09:52 |只看该作者
我觉得这应该算是一个 BUG 了,不知道 Perl 官方怎么认为?

论坛徽章:
0
3 [报告]
发表于 2006-03-31 10:54 |只看该作者
freebsd6下perl5.8.8运行结果:
1
Exiting subroutine via next at test.pl line 14.
3
Exiting subroutine via next at test.pl line 14.
5
Exiting subroutine via next at test.pl line 14.
7
Exiting subroutine via next at test.pl line 14.
9
Exiting subroutine via next at test.pl line 14.
11
Exiting subroutine via next at test.pl line 14.
13
Exiting subroutine via next at test.pl line 14.
15
Exiting subroutine via next at test.pl line 14.
17
Exiting subroutine via next at test.pl line 14.
19
Exiting subroutine via next at test.pl line 14.

论坛徽章:
0
4 [报告]
发表于 2006-03-31 13:22 |只看该作者
原帖由 yzhkp 于 2006-3-31 10:54 发表
freebsd6下perl5.8.8运行结果:
1
Exiting subroutine via next at test.pl line 14.
3
Exiting subroutine via next at test.pl line 14.
5
Exiting subroutine via next at test.pl line 14.
7
Exiting ...


这段应该是有warings的情况下的吧!

论坛徽章:
0
5 [报告]
发表于 2006-03-31 15:42 |只看该作者
原帖由 POLOGG 于 2006-3-30 20:03 发表
use strict;
#use warnings;

for my $i (1 .. 20)
{
    isodd( $i );
    print "$i\n";
}

sub isodd
{
    my $i = shift;
    next if int( $i / 2 ) * 2 == $i;
    return;
...


Such code should be improved. The idea that uses "next" in sub and put this sub isodd()
in for loop. It seems "next" used in a loop, but the program's style (or logical) is not good.
How can I use it as standlone without a loop and switch "use warning" on?

Usually using good English as what meas in Perl style. Such as isFoo(), existsFoo() returns
generally boolean value: 1 or 0

Resolution maybe:
1. use warning but put "no warnings;" in sub isodd {..}.   
2. I prefer to rewrite sub isodd:

  1. use strict;
  2. use warnings;
  3. sub is_odd {
  4.     my $i = shift;
  5.     return  int($i/2) * 2 == $i ? 0 : 1;
  6. }
  7. for (1..20) {
  8.     print "$_; " if is_odd($_);
  9. }

复制代码


Just 4 Fun, ulmer

-----------------------------------
Practice,practice makes perfect.

[ 本帖最后由 ulmer 于 2006-3-31 15:44 编辑 ]

论坛徽章:
0
6 [报告]
发表于 2006-03-31 19:44 |只看该作者
原帖由 ulmer 于 2006-3-31 15:42 发表


Such code should be improved. The idea that uses "next" in sub and put this sub isodd()
in for loop. It seems "next" used in a loop, but the program's style (or logical) is ...



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

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP