首页 > 编程 > Perl > 正文

perl用{}修饰变量名的写法分享

2020-06-04 20:30:07
字体:
来源:转载
供稿:网友
代码如下:
sub test {
    my $head = "abc";
    my $tail = "def";
    my $full = "${head}_${tail}";
    print $full, "/n";
}

直接写成下面这样,在strict模式下是无法通过的。
代码如下:
my $full = "$head_$tail";
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表