Perl   发布时间:2022-04-07  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了为什么要在Perl中返回散列或散列引用?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
完成以下最有效的方法是什么? (我知道他们完成同样的事情,但是大多数人如何在三者之间做到这一点,为什么?)

文件a.pl

@H_124_4@my %hash = build_hash(); # Do stuff with hash using $hash{$key} sub build_hash { # Build some hash my %hash = (); my @k = qw(hi bi no th xc ul 8e r); for ( @k ) { $hash{$k} = 1; } # Does this return a copy of the hash?? return %hash; }

文件b.pl

@H_124_4@my $hashref = build_hash(); # Do stuff with hash using $hashref->{$key} sub build_hash { # Build some hash my %hash = (); my @k = qw(hi bi no th xc ul 8e r); for ( @k ) { $hash{$k} = 1; } # Just return a reference (smaller than making a copy?) return \%hash; }

文件c.pl

@H_124_4@my %hash = %{Build_hash()}; # Do stuff with hash using $hash{$key} # it is better,because now we don't have to dereference our hashref each time using ->? sub build_hash { # Build some hash my %hash = (); my @k = qw(hi bi no th xc ul 8e r); for ( @k ) { $hash{$k} = 1; } return \%hash; }

解决方法

我更喜欢返回一个哈希参,有两个原因.一个,它使用了一点点内存,因为没有副本.二,如果你只需要一块哈希就可以这样做. @H_124_4@my $value = build_hash()->{$key};

学习爱哈希引用,一旦你开始使用对象,你将会看到他们很多.

大佬总结

以上是大佬教程为你收集整理的为什么要在Perl中返回散列或散列引用?全部内容,希望文章能够帮你解决为什么要在Perl中返回散列或散列引用?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。