perl Data::Dumper和Storable的例子

perl Data::Dumper和Storable的例子,感兴趣的朋友可以参考下。

1、Data::Dumper

Perl由于有了引用,使得我们可以在不同的数据结构之间灵活的嵌套数据结构。
比方说,Hash的value可以是标量,也可以嵌套list,甚至还可以继续嵌套hash。

这样使得我们写代码的确方便了不少,但有的时候我们希望对这些复杂的数据结构
有个直观的感受,也就是说能够用perl的语法吧数据结构以及实际值表示出来。这在开发阶段尤其
有用!

正好Perl的模块Data::Dumper可以帮助我们干这件事。

Data::Dumper有面向对象和直接使用函数两种调用方法,

这里介绍直接使用函数的方式,简单好用,应该能够满足绝大多数需求:

Dumper接收的参数为一个标量的列表或者一个引用的列表。
my $a = "good";
my $b = "bad";
my @my_array = ("hello", "world", "123", 4.5);
my %some_hash = ("foo", 35, "bar", 12.4, 2.5, "hello",
          "wilma", 1.72e30, "betty", "bye\n");

##使用函数
print Dumper($a);
print Dumper(\@my_array);
print Dumper(\%some_hash);
print Dumper((\%some_hash, \@my_array));

运行效果:
roger@roger-desktop:~/sandbox$ perl dump.pl
$VAR1 = 'good';
$VAR1 = [
          'hello',
          'world',
          '123',
          '4.5'
        ];
$VAR1 = {
          'betty' => 'bye
',
          'bar' => '12.4',
          'wilma' => '1.72e+30',
          'foo' => 35,
          '2.5' => 'hello'
        };
$VAR1 = {
          'betty' => 'bye
',
          'bar' => '12.4',
          'wilma' => '1.72e+30',
          'foo' => 35,
          '2.5' => 'hello'
        };
$VAR2 = [
          'hello',
          'world',
          '123',
          '4.5'
        ];
程序的输出会按照引用在list中的位置自动命名VAR[n].

 

 

    # if debug flag open, dump key parameters from Launcher
    if ( $debug ) {

        use Data::Dumper;

        $Data::Dumper::Sortkeys = 1; #Sort the keys in the output
        $Data::Dumper::Deepcopy = 1; #Enable deep copies of structures
        $Data::Dumper::Indent = 2;   #Output in a reasonable style (but no array indexes)

        $vmstaf->WriteTestLog( "DEBUG", "VMOTION : " .
            "Dumper Key Parameters from Launcher." );

        $vmstaf->WriteTestLog( "DEBUG", "VMOTION : " .
            "Dumper :: HASH :: generalInfo" );
        print Dumper(\%generalInfo);

        $vmstaf->WriteTestLog( "DEBUG", "VMOTION : " .
            "Dumper :: HASH :: vcInfo" );
        print Dumper(\%vcInfo);

        $vmstaf->WriteTestLog( "DEBUG", "VMOTION : " .
            "Dumper :: HASH :: vmNameToEsx" );
        print Dumper(\%vmNameToEsx);

        $vmstaf->WriteTestLog( "DEBUG", "VMOTION : " .
            "Dumper :: HASH :: esxToSwitches" );
        print Dumper(\%esxToSwitches);

        $vmstaf->WriteTestLog( "DEBUG", "VMOTION : " .
            "Dumper :: HASH :: esxToDevs" );
        print Dumper(\%esxToDevs);

    }


2、Storable
结合Data::Dumper和Storable存储和重新获取数据。你可以用U盘将数据拷走,再在其他服务器上展开。

#!/usr/bin/perl -w
use Data::Dumper;
use Storable;

my $a = "good";
my @myarray = ("hello", "world", "123", 4.5);
my %myhash = ( "foo" => 35,
   "bar" => 12.4,
   "2.5"=> "hello",
   "wilma" => 1.72e30,
   "betty" => "bye/n");

print Dumper($a) ."\n"x2;

print Dumper(\@myarray) ."\n"x2;

print Dumper(\%myhash) ."\n"x2;

print Dumper((\%myhash, \@myarray)) ."\n"x2;

###use Storable
print "\nmethod 1,use Storable retrieve data:\n";
store \%myhash,'./file.txt'; #保存数据
my $hashref=retrieve('./file.txt'); #重新获取数据

print Dumper(\%$hashref);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值