Symbol-table: deleting entries

∥☆過路亽.° 提交于 2019-12-23 07:47:09

问题


Why do I get the values from "$n" and "$m" after deleting the respective symbol-table-entries?

#!/usr/bin/env perl
use warnings;
use 5.012;

package Foo;

our $n = 10;
our $m = 20;

delete $Foo::{'n'};
delete $Foo::{'m'};

say $n; # 10
say $m; # 20

回答1:


Because the symbol table is only used at compile time (or via symbolic reference). The glob that is the value of $Foo::{...} is referenced directly by the compiled code so the no-longer-present symbol table entry has no effect.



来源:https://stackoverflow.com/questions/4623556/symbol-table-deleting-entries

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!