Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我做实验的时候,我发现
打印 ${\string}
string
裸词“字符串”被理解为您根本没有引用的字符串。 use strict会禁止这样做,并use warnings会抱怨它。
use strict
use warnings
然后,您将引用字符串(实际上是my $ref = \"string";),并取消引用它(实际上是${$ref})。
my $ref = \"string";
${$ref}
从某种意义上说,这是“正常的”,生活strict有时既滑溜溜又锋利。
strict
这是对被取消引用的字符串的引用${}
${}
perl -MO=Deparse -e "print ${\string}" print ${\'string';};