2
我得到了下面的perl錯誤。perl strict ref error
Can't use string ("") as a symbol ref while "strict refs" in use at test173 line 30.
粘貼下面的代碼。第30行是公開聲明。在公開聲明中失敗 。我在 腳本中有use strict;
和use warnings;
。錯誤表示什麼?如何更改代碼以解決 此錯誤。
my $file = 'testdata';
open($data, '<', $file) or die "Could not open '$file'\n";
print "file data id:$data\n";
@iu_data = <$data>;
$totalLineCnt = @iu_data;
print "total line cnt: $totalLineCnt". "\n";