Perl Data:Dumper和Storable的用法

前端之家收集整理的这篇文章主要介绍了Perl Data:Dumper和Storable的用法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、Data::Dumper
给定一个标量、数组、哈希或引用作为参数,将以PERL语法的方式返回这个数据的内容
 

@H_403_12@ 复制代码代码如下:

#!/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;

运行结果如下:
$VAR1 = 'good';

$VAR1 = [
  'hello',
  'world',
  '123',
  '4.5'
];

$VAR1 = {
  'betty' => 'bye/n',
  'bar' => '12.4',
  'wilma' => '1.72e+30',
  'foo' => 35,
  '2.5' => 'hello'
};

  '2.5' => 'hello'
};
$VAR2 = [
  'hello',255)"> 2、Storable
结合Data::Dumper和Storable存储和重新获取数据。你可以用U盘将数据拷走,再在其他服务器上展开。
 

复制代码代码如下:
   "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);

猜你在找的Perl相关文章