这行给我的错误使用散列作为引用已被弃用。
%hash->{$_[$counter]} = $_[$counter+1];
我如何重构这个代码,这样我就不会收到错误。
$hash{$_[$counter]} = $_[$counter+1];