替代:替代评估

问题描述 投票:12回答:1

如果在变量中传递替换,第一个和第二个替换是否相等?

#!/usr/bin/env perl6
use v6;

my $foo = 'switch';
my $t1 = my $t2 = my $t3 = my $t4 = 'this has a $foo in it';

my $replace = prompt( ':' ); # $0

$t1.=subst( / ( \$ \w+ ) /, $replace );
$t2.=subst( / ( \$ \w+ ) /, { $replace } );
$t3.=subst( / ( \$ \w+ ) /, { $replace.EVAL } );
$t4.=subst( / ( \$ \w+ ) /, { ( $replace.EVAL ).EVAL } );

say "T1 : $t1";
say "T2 : $t2";
say "T3 : $t3";
say "T4 : $t4";

# T1 : this has a $0 in it
# T2 : this has a $0 in it
# T3 : this has a $foo in it
# T4 : this has a switch in it
replace eval perl6 subst
1个回答
9
投票

$replace{$replace}之间的唯一区别是第二个是返回变量值的块。它只添加了一个间接级别,但结果是一样的。更新:根据@ raiph的评论编辑。

© www.soinside.com 2019 - 2024. All rights reserved.