zoukankan      html  css  js  c++  java
  • perl的package和module

    来源:

    http://www.cnblogs.com/itech/archive/2010/03/23/1692836.html

    一 package

    1) package 相当于C++中的namespace,不同的package下可以定义相同的变量和subroutines;

    2)在一个pl文件中可以定义多个package,每个package有一个单独的symboltable,每个symboltable中包含了此package中的变量和subroutines;

    3) package mypack; 此语句定义一个名为mypack的包,从此以后定义的所有变量和子程序的名字都存贮在该包关联的符号表中,直到遇到另一个package语句为止。默认地存储在main package中。

    4)在一个包中可以引用其它包中的变量或子程序,包名和变量名用双冒号隔开,即$mypack::var。

    实例:

    二 module

    1)module是perl的library,相当于C++中的lib或dll,是功能相近的subroutines的集合;

    2)module通常存储在同名的pm文件中;

    3)通常module也同时定义在一个同名的package中;

    4)EXPORT用来导出subroutines,EXPORT_OK用来导出变量;

    5)use mymodule;用来引用mymoudule,no mymodule来取消mymodule的引用;

     实例:

    USE引用模块时,如果模块名称中包含::双冒号(在MyModule.pm文件中:package MyDirectory::MyModule),该双冒号将作为路径分隔符,相当于Unix下的/或者Windows下的。 如:
    use MyDirectory::MyModule;
    编译器将从@INC指定的目录下的MyDirectory子目录去寻找MyModule模块, 类似
    如下路径:
    C:PerllibMyDirectory
    C:PerlextlibMyDirectory
    C:PerlsitelibMyDirectory

    下的MyModule.pm文件。

    三 Libraries

    可以归于一般的perl文件,或module中。属于哪类,就按哪类定义,哪类使用。

    可以忽略认为有这个分类

    四 实例

    @EXPORT contains list of symbols (subroutines and variables) of the module to be exported into the caller namespace.

    @EXPORT_OK does export of symbols on demand basis.

    Let us use the following sample program to understand Perl exporter.

    package Arithmetic;
    
    use Exporter;
    
    # base class of this(Arithmetic) module
    @ISA = qw(Exporter);
    
    # Exporting the add and subtract routine
    @EXPORT = qw(add subtract);                       默认输出
    # Exporting the multiply and divide  routine on demand basis.
    @EXPORT_OK = qw(multiply divide);                   指定输出
    
    sub add
    {
    my ($no1,$no2) = @_;
    my $result;
    $result = $no1+$no2;
    return $result;
    }
    
    sub subtract
    {
    my ($no1,$no2) = @_;
    my $result;
    $result = $no1-$no2;
    return $result;
    
    }
    
    sub multiply
    {
    my ($no1,$no2) = @_;
    my $result;
    $result = $no1*$no2;
    return $result;
    }
    
    sub divide
    {
    my ($no1,$no2) = @_;
    my $result;
    $result = $no1/$no2;
    return $result;
    
    }

    In the above example, we defined the arithmetic module with four functions. By default add() and subtract() functions are exported to the user’s/caller’s namespace.

    “use Arithmetic” statement imports the subroutines from Arithmetic module that are exported by default.

    “use Arithmetic qw(multiply divide)” indicates that these two routines gets exported only when it is specifically requested as shown in the following code snippet.

    #! /usr/bin/perl
    
    use strict;
    use warnings;
    
    use Arithmetic;
    use Arithmetic qw(multiply divide);
    
    print add(1,2),"
    ";
    print multiply(1,2),"
    ";

    As we seen above, in the main program we used the Arithmetic module with default import ( add and subtract ) and on-demand import ( multiply and divide ).

    http://www.thegeekstuff.com/2010/06/perl-exporter-examples/

  • 相关阅读:
    Struts2的配置中:Could not find action or result 问题的解决方法
    Oracle 数据库 Record is locked by another user 问题解决办法
    设计模式六大原则(2):里氏替换原则
    在PL/SQL中 自动复制转换StringBuffer的SQL
    反射setAccessible()方法
    对允许任意图片上传的发布内容模式的啊哈的想法
    如果你真的想做一件事,你一定会找到一个方法;如果你不想做一件事,你一定会找到一个借口.
    xaml 的 intellisense失效的解决办法
    Blog技术词汇之Rss篇 什么是Rss以及其定义[翻译]
    多个存储过程之间相互调用的原子性问题
  • 原文地址:https://www.cnblogs.com/spriteflk/p/5737619.html
Copyright © 2011-2022 走看看