我有 4 个应用程序。我们称它们为:App1、App2、App3 和 App4。
对于这些应用程序中的每一个,我都有一个数组:例如:
my @App1_links = (...some data...);
my @App2_links = (...some data...);
my @App3_links = (...some data...);
my @App4_links = (...some data...);
现在我的代码中有一个循环通过这 4 个应用程序,我打算做这样的事情:
my $link_name = $app_name . "_links";
where $app_name will be App1, App2 etc...
and then use it as : @$link_name
现在这段代码做了我不使用时打算做的事情:use strict
但不是
The error is: Can't use string ("App1_links") as an ARRAY ref while "strict refs" in use at code.pm line 123.
如何使用use strict
.
请帮忙。