2
是否有可能在perl中聲明靜態常量hashrefs? 我用以下方式使用Readonly和Const :: Fast模塊嘗試它,但是當我多次調用子時,會收到錯誤消息「嘗試重新分配只讀變量」。perl靜態常量hashrefs
use Const::Fast;
use feature 'state';
sub test {
const state $h => {1 => 1};
#...
}
添加到我的答案。 – ikegami