Frage

Under

use strict;
use warnings;
my $foo = undef;

the expressions

$foo . ''

and

"$foo"

both produce

Use of uninitialized value $foo in ... at ...

but the following expression gives the empty string without warning:

$foo x 1

Anyone knows why? I mean, it's cool to have a nice stringification idiom ($_ x 1 is quite much shorter than defined ? "$_" : ''), but it feels a bit weird.

War es hilfreich?

Lösung

I once saw a show with a scene in a law school class. The instructor presented two similar cases to his students and asked why did they result in different rulings. It's because the rulings were made by judges, and judges are people, he eventually explained.

That should warn. The developers that work on Perl are people. Run perlbug to send a bug report if you wish.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top