http://www.perlmonks.org?node_id=666227


in reply to Re: How to assign string "0" in short circuit
in thread How to assign string "0" in short circuit

Thank you all for your suggestions. Finally I used the following code to solve the problem:
sub function1 { my $var = defined $_[0] ? shift : 'No argument'; print "$var\n"; }
But I still wonder if we cannot assign string value "0" to a variable using short circuit.

// works well, but that is in Perl 5.10.0. What if we have a situation like the following (in Perl 5.8.8), where we have multiple expressions involved in the short circuit in order of preference:
my $var = $hash1{$name} || $hash2{$name} || $some_default_value;
This will assign the default value to $var if say the key $name is not defined in %hash1 and is assigned a value 0 in %hash2. Is a if-elsif ladder or complex nested ternary operators the only way to solve this? Or may be this is the reason why they came up with // in Perl 5.10.0

Replies are listed 'Best First'.
Re^3: How to assign string "0" in short circuit
by naikonta (Curate) on Feb 05, 2008 at 07:52 UTC
    Short circuit operators always evaluate in boolean context. In boolean context there are only true and false. The string "0" and numberic 0 are, among others, false. But, 0 (or empty string) is defined. So you need to check for defined-ness to allow them. See True or False? A Quick Reference Guide.

    Open source softwares? Share and enjoy. Make profit from them if you can. Yet, share and enjoy!