LOC和ACC在perl中意味着什么?

时间:2011-08-20 06:36:00

标签: perl

为了在perl中填充文件内容,有几种方法。其中两个是以下:

1

print $file_handle1 <<LOC
this is content of first file
LOC
;

2

print $file_handle2 <<ACC
this is content of second file
ACC
;

那么LOCACC之间有什么区别(如果有的话)?

3 个答案:

答案 0 :(得分:6)

它们只是名字,它们完全相同。你可以在那里使用任何你想要的东西。

此语法称为here documents,并非特定于perl。

print <<HELLO;
Good Bye
HELLO

答案 1 :(得分:3)

没有任何区别(至少就Perl而言)。那是heredoc syntax,您可以使用任何值作为块指示符的结尾。

答案 2 :(得分:1)

他们没有任何意义。它们是多行文本的分隔符。

有关详细信息,请访问Google perl here-doc