Pergunta

que eu quero fazer, em Perl, o equivalente ao seguinte código Ruby:

class Foo
  MY_CONST = {
    'foo' => 'bar',
    'baz' => {
      'innerbar' => 'bleh'
    },
  }

  def some_method
    a = MY_CONST[ 'foo' ]
  end

end

# In some other file which uses Foo...

b = Foo::MY_CONST[ 'baz' ][ 'innerbar' ]

Isto é, eu só quero declarar uma constante, estrutura hash aninhado para uso tanto na classe e fora. Como?

Foi útil?

Solução

Você pode usar o Hash :: Util módulo para bloquear e desbloquear um hash ( chaves, valores, ou de ambos).

package Foo;
use Hash::Util;

our %MY_CONST = (
    foo => 'bar',
    baz => {
        innerbar => 'bleh',
    }
);

Hash::Util::lock_hash_recurse(%MY_CONST);

Então, em algum outro arquivo:

use Foo;
my $b = $Foo::MY_CONST{baz}{innerbar};

Outras dicas

Você também pode fazer isso inteiramente com builtins:

package Foo;
use constant MY_CONST =>
{
    'foo' => 'bar',
    'baz' => {
        'innerbar' => 'bleh',
    },
};

sub some_method
{
    # presumably $a is defined somewhere else...
    # or perhaps you mean to dereference a parameter passed in?
    # in that case, use ${$_[0]} = MY_CONST->{foo} and call some_method(\$var);
    $a = MY_CONST->{foo};
}

package Main;  # or any other namespace that isn't Foo...
# ...
my $b = Foo->MY_CONST->{baz}{innerbar};

Consulte Readonly :

#!/usr/bin/perl

package Foo;

use strict;
use warnings;

use Readonly;

Readonly::Hash our %h => (
    a => { b => 1 }
);

package main;

use strict;
use warnings;

print $Foo::h{a}->{b}, "\n";

$h{a}->{b} = 2;

Output:

C:\Temp> t
1
Modification of a read-only value attempted at C:\Temp\t.pl line 21

Aqui está um guia para hashes em Perl. Hash de hashes

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top