在perl中用{}修饰变量名,可以防止 _ 被解释为变量名的一部分。
sub test { my $head = "abc"; my $tail = "def";
my $full = "${head}_${tail}"; print $full, "n"; }
直接写成下面这样,在strict模式下是无法通过的。
CopyRight © 2010-2021 脚本学堂 Jb200.com , All Rights Reserved.