3

我正在尝试以动态方式传递参数。我想使用 Perl 函数given(){},但由于某种原因,我不能在其他任何东西中使用它。这就是我所拥有的。

print(given ($parity) {
   when (/^None$/) {'N'}
   when (/^Even$/) {'E'}
   when (/^Odd$/)  {'O'}
});

现在我知道我可以在此之前声明一个变量并在函数内部使用它print(),但我试图让我的代码更简洁。同样的原因我不使用复合if-then-else语句。如果它有帮助,这是错误

syntax error at C:\Documents and Settings\ericfoss\My Documents\Slick\Perl\tests\New_test.pl line 22, near "print(given"
Execution of C:\Documents and Settings\ericfoss\My Documents\Slick\Perl\tests\New_test.pl aborted due to compilation errors.
4

1 回答 1

8

您不能将语句放在表达式中。

print( foreach (@a) { ... } );  # Fail
print( given (...) { ... } );   # Fail
print( $a=1; $b=2; );           # Fail

虽然do可以帮助您实现这一目标。

print( do { foreach (@a) { ... } } );  # ok, though nonsense
print( do { given (...) { ... } } );   # ok
print( do { $a=1; $b=2; } );           # ok

但说真的,你想要一个哈希。

my %lookup = (
   None => 'N',
   Even => 'E',
   Odd  => 'O',
);

print($lookup{$parity});

甚至

print(substr($parity, 0, 1));
于 2012-12-11T16:58:58.467 回答