Chinaunix首页 | 论坛 | 博客
  • 博客访问: 855438
  • 博文数量: 253
  • 博客积分: 6891
  • 博客等级: 准将
  • 技术积分: 2502
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-03 11:01
文章分类

全部博文(253)

文章存档

2016年(4)

2013年(3)

2012年(32)

2011年(184)

2010年(30)

分类: Python/Ruby

2011-10-10 17:07:58

&error("Invalid input") unless &valid($input);
$i *= 2 until $i > $j;
print " ", ($n += 2) while $n < 10;
&greet($_) foreach @person;
print "$n is a negative number.\n" if $n < 0;

Now, take away the while keyword and the conditional expression, and you’ll have a
naked block:
{
  body;
  body;
  body;
}
The naked block is like a while or foreach loop, except that it doesn’t loop; it just
executes the body of the loop once, and it’s done. It’s an un-loop!
we use it maybe just because it can create privite variable.
阅读(266) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~