English 中文(简体)
断绝对黑大麻的否定
原标题:Perl hash negation
  • 时间:2012-05-24 12:15:58
  •  标签:
  • perl

你能帮我校正代码片段吗?

我要列出类型为eq xyz 但不使用名称服务器的服务器 。

our %SERVERS = (
  "rajesh1" => {type =>  xyz , sha =>  ram },
  "rajesh2" => {type =>  xyz , sha =>  sita },
  "rajesh3" => {type =>  xyz , named => ["raa"]},
  "rajesh4" => {type =>  xxx , named => ["rajjaj"]},
);

while ( my $mServer = each(%SERVERS) ) 
{ 
  if ("$SERVERS{$mServer}{type}" eq "xyz" && !"$SERVERS{$mServer}{named}" ) 
  {
    print "Name of the server is $mServer
";        
  }
}

预期成果:

rajesh1
rajesh2
最佳回答
  1. You re missing a semicolon after the definition of %SERVERS.
  2. You start calling it $mServer, then later say $gServer. Pick one!
  3. Get rid of the quotes around $SERVERS{$mServer}{type} and $SERVERS{$mServer}{named} (once you ve changed gServer to mServer—you don t need them.
  4. You expect to see "rajesh1 rajesh2", but none of them have type "prod". How is that possible? Assuming you change their type to "prod"
  5. You expect to see "rajesh1 rajesh2", but you print "Name of the server is $mServer " (once you change gServer to mServer). Changing that to just "$mServer ", and …
  6. … it should work.

因此:

our %SERVERS = (
    "rajesh1" =>  {type =>  prod , sha =>  ram },
    "rajesh2" =>  {type =>  prod , sha =>  sita },
    "rajesh3" =>  {type =>  xyz ,  named => ["raa"]},
    "rajesh4" =>  {type =>  xxx ,  named => ["rajjaj"]},
);

while (my $mServer = each %SERVERS) { 
    if ($SERVERS{$mServer}{type} eq "prod" && !$SERVERS{$mServer}{named}) {
        print "$mServer
";
    }
}

然后:

$ perl test.pl 
rajesh1
rajesh2
$
问题回答

完整样本, 捕捉两个 ach s 返回值, 减少视觉混乱 :

use strict;
use warnings;

our %SERVERS = (
    "rajesh1" => {type =>  xyz ,  sha =>  ram },
    "rajesh2" => {type =>  xyz ,  sha =>  sita },
    "rajesh3" => {type =>  xyz ,  named => ["raa"]},
    "rajesh4" => {type =>  xxx ,  named => ["rajjaj"]},
    "rajesh5" => {type =>  prod , sha =>  ram },
    "rajesh6" => {type =>  prod , named => ["jajaja"]},
);

while ( my( $mServer, $mData ) = each %SERVERS ) { 
    if ($mData->{type} eq "prod" && !$mData->{named}) {
        print "Name of the server is $mServer
";
    }
}

您正在寻找定义的 < code>

if ($SERVERS{$mServer}->{type} eq "xyz" &&
    ! defined $SERVERS{$mServer}->{named} )
...

您正在使用一个未定义的变量 $gServer , 其中您显然打算使用循环变量 $mServer 。 您应该严格使用 ; 在所有脚本中使用警告; ; 从而很容易抓住这个错误( 以及一连串其他错误 ) 。

我使用间接运算符 - gt; 访问散列引用的内容,作为首选。我还删除了一些无谓引用,作为文字学上的改变。





相关问题
Why does my chdir to a filehandle not work in Perl?

When I try a "chdir" with a filehandle as argument, "chdir" returns 0 and a pwd returns still the same directory. Should that be so? I tried this, because in the documentation to chdir I found: "...

How do I use GetOptions to get the default argument?

I ve read the doc for GetOptions but I can t seem to find what I need... (maybe I am blind) What I want to do is to parse command line like this myperlscript.pl -mode [sth] [inputfile] I can use ...

Object-Oriented Perl constructor syntax and named parameters

I m a little confused about what is going on in Perl constructors. I found these two examples perldoc perlbot. package Foo; #In Perl, the constructor is just a subroutine called new. sub new { #I ...

Where can I find object-oriented Perl tutorials? [closed]

A Google search yields a number of results - but which ones are the best? The Perl site appears to contain two - perlboot and perltoot. I m reading these now, but what else is out there? Note: I ve ...

热门标签