"未初始化值"警告的说明

Сух*_*й27 2 perl

为何perl -we '$c = $c+3'上升

Use of uninitialized value $c in addition (+) at -e line 1.
Run Code Online (Sandbox Code Playgroud)

perl -we '$c += 3'没有抱怨未初始化的价值?

UPDATE

文档或像"Perl最佳实践"这样的书是否提到了这种行为?

cuo*_*glm 5

我想perldoc perlop有一点解释:

Assignment Operators
       "=" is the ordinary assignment operator.

       Assignment operators work as in C.  That is,

           $a += 2;

       is equivalent to

           $a = $a + 2;

       although without duplicating any side effects that dereferencing the
       lvalue might trigger, such as from tie()
Run Code Online (Sandbox Code Playgroud)

有了B::Concise助手,我们可以看到诀窍:

$ perl -MO=Concise,-exec -e '$c += 3'
1  <0> enter 
2  <;> nextstate(main 1 -e:1) v:{
3  <#> gvsv[*c] s
4  <$> const[IV 3] s
5  <2> add[t2] vKS/2
6  <@> leave[1 ref] vKP/REFC
-e syntax OK

$ perl -MO=Concise,-exec -e '$c = $c + 3'
1  <0> enter 
2  <;> nextstate(main 1 -e:1) v:{
3  <#> gvsv[*c] s
4  <$> const[IV 3] s
5  <2> add[t3] sK/2
6  <#> gvsv[*c] s
7  <2> sassign vKS/2
8  <@> leave[1 ref] vKP/REFC
-e syntax OK
Run Code Online (Sandbox Code Playgroud)

更新

搜索后perldoc,我看到这个问题记录在perlsyn:

Declarations
       The only things you need to declare in Perl are report formats and subroutines (and sometimes not even subroutines).  A variable
       holds the undefined value ("undef") until it has been assigned a defined value, which is anything other than "undef".  When used as a
       number, "undef" is treated as 0; when used as a string, it is treated as the empty string, ""; and when used as a reference that
       isn't being assigned to, it is treated as an error.  If you enable warnings, you'll be notified of an uninitialized value whenever
       you treat "undef" as a string or a number.  Well, usually.  Boolean contexts, such as:

           my $a;
           if ($a) {}

       are exempt from warnings (because they care about truth rather than definedness).  Operators such as "++", "--", "+=", "-=", and
       ".=", that operate on undefined left values such as:

           my $a;
           $a++;

       are also always exempt from such warnings.
Run Code Online (Sandbox Code Playgroud)

  • 如果它包含了这个问题的内容,那么,如果它包含了对这个问题的理解,那么,如果它包含了左值,则不会重复引用左值可能触发的任何副作用.但是,据我所知,它可能很好. (2认同)