Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Symbol-table: deleting entries

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
like image 586
sid_com Avatar asked Jan 07 '11 07:01

sid_com


1 Answers

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.

like image 131
ysth Avatar answered Sep 28 '22 01:09

ysth