如何编写晦涩难读的Perl代码
如何检验自己写的是否符合基本标准呢? HUGOMORE42
怎么办呢?
内嵌数据结构时用引用。
不要这样:
my %hash = (); # hash
$hash{$key}{$iner_key} = $value; # hash of hash
for my $key (keys %{$hash{$key}} { # 符号多,容易乱
# ....
}
这样好些:
my $hash = {}; # reference of hash
$$hash{$key}{$iner_key} = $value;
for my $key (keys %$hash{$key}) {
# ....
}
算了,还是用Python吧