perl – 在有或没有删除内容的情况下,保留一个有福的哈希成员

前端之家收集整理的这篇文章主要介绍了perl – 在有或没有删除内容的情况下,保留一个有福的哈希成员前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在某些来源中看到这一行代码 @H_403_2@( $self->{arg} ) = ( ( delete $self->{arg} ) =~ /(.*)/s ) if ${^TAINT};

我明白不了了我也知道delete

我的问题是,在什么情况下有必要或首选使用删除,而不够简单

@H_403_2@( $self->{arg} ) = ( ( $self->{arg} ) =~ /(.*)/s ) if ${^TAINT};

例如

@H_403_2@#!/usr/bin/env perl -T use 5.014; use warnings; package Some { use Moose; has 'arg' => (is => 'rw',isa => 'Str'); sub doit { my $self = shift; #( $self->{arg} ) = ( ( delete $self->{arg} ) =~ /(.*)/s ) if ${^TAINT}; ( $self->{arg} ) = ( ( $self->{arg} ) =~ /(.*)/s ) if ${^TAINT}; } }; my $some = Some->new( arg => 'some text' ); $some->doit(); say $some->arg;

解决方法

使用正常的哈希删除值并重新插入将给出与修改相同的结果.

commit没有提供任何关于为什么他删除它的信息,只是他复制了Mason 1的功能.但如果你看看HTML::Mason::Lexer的来源,你会发现这个评论

We need to untaint the component or else the regexes will fail
to a Perl bug. The delete is important because we need to
create an entirely new scalar,not just modify the existing one.

@H_403_2@($current->{comp_source}) = (delete $current->{comp_source}) =~ /(.*)/s if taint_is_on;

所以这样做的原因是有一个新的标量,虽然他不这样做的另一个地方,他是不成功的:Mason::Interp,所以我的猜测是一个更早的Perl错误,当挽救.

所以不同的是,删除会给你一个新的标量,虽然这很少有一个实际的应用. (当然,删除和插入也是一个较慢的操作.)

@H_403_2@use strict; my $hash->{test} = 'test'; print \($hash->{test}),"\n"; ( $hash->{test} ) = ( ( $hash->{test} ) =~ /(.*)/s ); print \($hash->{test}),"\n"; ( $hash->{test} ) = ( ( delete $hash->{test} ) =~ /(.*)/s ); print \($hash->{test}),"\n";

@H_403_2@SCALAR(0x7f84d10047e8) SCALAR(0x7f84d10047e8) SCALAR(0x7f84d1029230)
原文链接:https://www.f2er.com/Perl/172460.html

猜你在找的Perl相关文章