Perl(点等于)中的“.=”是什么意思?下面的示例代码(在 while 子句中):
if( my $file = shift @ARGV ) {
$parser->parse( Source => {SystemId => $file} );
} else {
my $input = "";
while( <STDIN> ) { $input .= $_; }
$parser->parse( Source => {String => $input} );
}
exit;
感谢您的任何见解。