Pregunta

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.

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top