@my_array = undef;
if (@my_array ) {
print 'TRUE';
} else {
print 'FALSE';
}
This will print TRUE
Why does the array have an element ?
|
1
|
|
|
|
|
|
The array has an element because you assigned one. Consider the following:
They look similar, but the first line is different from the other two (which are equivalent). The first line results in array with a single element (the value It isn't usually necessary to clear an array. They are empty when declared:
|
||||
|
|
|
See What is Truth? for more on boolean values in Perl. (If you're coming from another language, you may be in for a few other surprises, so it's worth a read.) Here's a key bit from the article:
One other tip: localize your variables with |
|||
|
|
|
|
In Perl, If you want to remove all elements of an array, do this:
|
||||||||
|