- 论坛徽章:
- 0
|
原帖由 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:
- use strict;
- use warnings;
- sub is_odd {
- my $i = shift;
- return int($i/2) * 2 == $i ? 0 : 1;
- }
- for (1..20) {
- print "$_; " if is_odd($_);
- }
复制代码
Just 4 Fun, ulmer
-----------------------------------
Practice,practice makes perfect.
[ 本帖最后由 ulmer 于 2006-3-31 15:44 编辑 ] |
|