Is this the best way to check a scalar variable is initialized in Perl using defined?
my $var;
if (cond) {
$var = "string1";
}
# Is this the correct way?
if (defined $var) {
...
}
|
Is this the best way to check a scalar variable is initialized in Perl using defined?
|
||||
|
Perl doesn't offer a way to check whether or not a variable has been initialized. However, scalar variables that haven't been explicitly initialized with some value happen to have the value of There's several other ways tho. If you want to assign to the variable if it's
|
|||||||||||||||||
|
|
It depends on what you're trying to do. The proper
Another long-winded way of doing this is to create a class and a flag when the variable's been changed, which is unnecessary. |
||||
|
|
|
Depends on what you plan on doing with the variable whether or not it is defined; as of perl 5.10, you can do this (from perl51000delta):
|
|||
|
|
|
If you don't care whether or not it's empty, it is. Otherwise you can check
|
||||
|
|
|
'defined' will return true if a variable has a real value. As an aside, in a hash, this can be true:
|
|||||||||||||||
|
undefis the best way to see if a variable has been initialized or not; however, this would fail your initialization test if the variable is set toundefat any time after being initialized, as stated below. – vol7ron Sep 18 '10 at 13:53