perl用{}修饰变量名的写法分享
(编辑:jimmy 日期: 2024/11/3 浏览:3 次 )
复制代码 代码如下:
sub test {
my $head = "abc";
my $tail = "def";
my $full = "${head}_${tail}";
print $full, "\n";
}
直接写成下面这样,在strict模式下是无法通过的。
复制代码 代码如下:
my $full = "$head_$tail";
sub test {
my $head = "abc";
my $tail = "def";
my $full = "${head}_${tail}";
print $full, "\n";
}
直接写成下面这样,在strict模式下是无法通过的。
复制代码 代码如下:
my $full = "$head_$tail";
下一篇:一行代码解决 perl输入 排序 输出问题