Learning Perl: 10.4. The Naked Block Control Structure

Previous Page
Next Page

 

10.4. The Naked Block Control Structure

The so-called "naked" block is one without a keyword or condition. That is, suppose you start with a while loop, which looks something like this:

    while (condition) {
      body;
      body;
      body;
    }

Remove 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 executes the body of the loop once, and it's done. It's an un-loop!

You'll see other uses for the naked block, but one of its features is providing a scope for temporary lexical variables:

    {
      print "Please enter a number: ";
      chomp(my $n = <STDIN>);
      my $root = sqrt $n;  # calculate the square root
      print "The square root of $n is $root./n";
    }

In this block, $n and $root are temporary variables scoped to the block. As a general guideline, all variables should be declared in the smallest scope available. If you need a variable for a few lines of code, you can put those lines into a naked block and declare the variable inside that block. If you need the value of $n or $root later, you will need to declare them in a larger scope.

You may have noticed the sqrt function in that code and wondered about it; yes, we haven't shown this function before. Perl has many built-in functions beyond the scope of this book. When you're ready, check the perlfunc manpage to learn about more of them.

Previous Page
Next Page
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值