主页 > 知识库 > perl哈希的一个实例分析

perl哈希的一个实例分析

热门标签:外呼电信系统 上海企业外呼系统 okcc外呼系统怎么调速度 万利达百货商场地图标注 电话机器人哪里有卖 河南虚拟外呼系统公司 智能机器人电销神器 热门电销机器人 惠州龙门400电话要怎么申请

复制代码 代码如下:

#!/bin/perl
use strict; 
use warnings; 

my %movies; 
my $film; 
my %reverse_result; 
my $director; 
my @data; 

%movies = 

  'The Shining'       => 'Kubrick', 
  'Ten Commandments'  => 'DeMille', 
  'Goonies'           => 'Spielberg', 
); 

#输出哈希的值,输出的结果为Kubrick 
print $movies{'The Shining'}; 

#同时输出键和值 
foreach $film(keys %movies) 

   print "$film was directed by $movies{$film}.\n"; 


#添加空格 
print "\n"; 

#哈希结构的切换 
%reverse_result=reverse %movies; 
foreach $director(keys %reverse_result) 

   print "$director directe the $reverse_result{$director}.\n";  
}

#添加空格 
print "\n";

#当哈希结构用于列表环境中时,perl会将hash重新变为由关键词和键值组成的普通列表 
@data=%movies; 
 print "@data\n"; 

#添加空格 
print"\n"; 

#得到的数组是一个分为奇数为film,偶数为director的数组,或者相反 
#然后我们将数组赋值给hash 
%movies=@data; 
foreach $director(keys %reverse_result) 

  print "$director directe the $reverse_result{$director}.\n";  
}     
print "The result is not change\n";

以下为输出结果:
    F:\&;perl\a.pl 
    KubrickGoonies was directed by Spielberg. 
    The Shining was directed by Kubrick. 
    Ten Commandments was directed by DeMille. 

    DeMille directe the Ten Commandments. 
    Spielberg directe the Goonies. 
    Kubrick directe the The Shining. 

    Goonies Spielberg The Shining Kubrick Ten Commandments DeMille 

    DeMille directe the Ten Commandments. 
    Spielberg directe the Goonies. 
    Kubrick directe the The Shining. 

    F:\&;

#----测试哈希key的方法:
if(exists $hash{keyval}) 


#----删除关键字:
delete hash {keyval};

#---清空哈希:
%hash=();

您可能感兴趣的文章:
  • php-perl哈希算法实现(times33哈希算法)
  • Perl 哈希的创建和引用介绍
  • Perl哈希表用法解析
  • Perl 哈希Hash用法之入门教程
  • perl哈希hash的常见用法介绍
  • Perl与JS的对比分析(数组、哈希)

标签:淮安 绵阳 秦皇岛 周口 周口 合肥 百色 绥化

巨人网络通讯声明:本文标题《perl哈希的一个实例分析》,本文关键词  perl,哈希,的,一个,实例分析,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《perl哈希的一个实例分析》相关的同类信息!
  • 本页收集关于perl哈希的一个实例分析的相关信息资讯供网民参考!
  • 推荐文章