(no subject)
Nov. 21st, 2008 10:32 pmToday's discovery is that Perl doesn't have a null value. In the following code, the if statement will throw an error:
This is because Perl doesn't actually have a concept of null. The nearest thing is an undefined variable (undefined in the sense that the variable does not exist, not in the sense that the variable exists with unknown contents), except you can't directly use it with comparisions or logical operators. I like VB, as it does have such a thing:
In VB, Null is a distinct value from zero (the classical C representation), and does pretty much what you expect. There are also distinct values for Nothing (an object variable that does not refer to an actual object, like a C null pointer but with error handling), and Empty (an optional parameter that was not provided). 'Course, to use these you do need to use Variants which have a performance hit, but it's not really significant anymore in this age of multi-gigahertz processors and it makes database work nice.
undef $foo;
if ($foo == 2)
{
# do something
}This is because Perl doesn't actually have a concept of null. The nearest thing is an undefined variable (undefined in the sense that the variable does not exist, not in the sense that the variable exists with unknown contents), except you can't directly use it with comparisions or logical operators. I like VB, as it does have such a thing:
Dim Foo
Foo = Null
If Foo = 2 Then
# do something
End IfIn VB, Null is a distinct value from zero (the classical C representation), and does pretty much what you expect. There are also distinct values for Nothing (an object variable that does not refer to an actual object, like a C null pointer but with error handling), and Empty (an optional parameter that was not provided). 'Course, to use these you do need to use Variants which have a performance hit, but it's not really significant anymore in this age of multi-gigahertz processors and it makes database work nice.
no subject
Date: 2008-11-22 02:05 am (UTC)undef $foo; if (defined $foo && $foo == 2) { # do something }no subject
Date: 2008-11-23 04:10 pm (UTC)It gives you a warning if you
use warnings— otherwise that block silently goes on the else path.undefis actually fairly close to a NULL style value, can be used as that fairly easily. But there is no difference between having an undef value and not existing in the first place, unless youuse strict(you should) which will gladly smack your fingernails if you use an undeclared variable. It should be noted that any and every variable declared will initially have an undef value.ralesk@eretnek:~$ perl -e 'use warnings; undef $foo; if ($foo == 2) { print "do something\n"; }' Use of uninitialized value $foo in numeric eq (==) at -e line 1. ralesk@eretnek:~$ perl -e 'use strict; undef $foo; if ($foo == 2) { print "do something\n"; }' Global symbol "$foo" requires explicit package name at -e line 1. Global symbol "$foo" requires explicit package name at -e line 1. Execution of -e aborted due to compilation errors. ralesk@eretnek:~$ perl -e 'use strict; my $foo; undef $foo; if ($foo == 2) { print "do something\n"; }' ralesk@eretnek:~$