Perl Learning: 2.6. The if Control Structure

Previous Page
Next Page

 

2.6. The if Control Structure

Once you can compare two values, you'll probably want your program to make decisions based upon that comparison. Like all similar languages, Perl has an if control structure:

    if ($name gt 'fred') {
      print "'$name' comes after 'fred' in sorted order./n";
    }

If you need an alternative choice, the else keyword provides that as well:

    if ($name gt 'fred') {
      print "'$name' comes after 'fred' in sorted order./n";
    } else {
      print "'$name' does not come after 'fred'./n";
      print "Maybe it's the same string, in fact./n";
    }

Those block curly braces are required around the conditional code (unlike C, whether you know C or not). It's a good idea to indent the contents of the blocks of code as we show here; that makes it easier to see what's going on. If you're using a programmers' text editor (as discussed in Chapter 1), it'll do most of the work for you.

2.6.1. Boolean Values

You may use any scalar value as the conditional of the if control structure. That's handy if you want to store a true or false value into a variable, like this:

    $is_bigger = $name gt 'fred';
    if ($is_bigger) { ... }

But how does Perl decide whether a given value is true or false? Perl doesn't have a separate Boolean data type as some languages have. Instead, it uses a few simple rules:[*]

[*] These aren't the rules Perl uses but are rules you can use to get the same result.

  • If the value is a number, 0 means false; all other numbers mean true.

  • If the value is a string, the empty string ('') means false; all other strings mean true.

  • If the value is another kind of scalar than a number or a string, convert it to a number or a string and try again.[]

    [] This means that undef (which we'll see soon) means false, and all references (which are covered in the Alpaca book) are true.

There's one trick hidden in those rules. Because the string '0' is the same scalar value as the number 0, Perl has to treat them the same. That means that the string '0' is the only nonempty string that is false.

If you need to get the opposite of any Boolean value, use the unary not operator, !. If what follows it is a true value, it returns false; if what follows is false, it returns true:

    if (! $is_bigger) {
      # Do something when $is_bigger is not true
    }

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值