sub function{
my $storedata=shift;
my $storenameandaddress=$storedata->{$storeid}->{name}
."_".$storedata->{$storeid}->{location}->{address}
."_".$storedata->{$storeid}->{location}->{city}
."_".$storedata->{$storeid}->{location}->{state}
."_".$storedata->{$storeid}->{location}{country};}
我的代码如上所示。它给了我错误信息:
Using a hash as a reference is deprecated at main.pl line 141.
但是,该功能仍然可以运行。其余的似乎都很好。那么这个错误在说什么?我应该如何解决它?谢谢。