Web Developer's Virtual Library: Encyclopedia of Web Design Tutorials, Articles and Discussions


WDVL Newsletter

Active Server Pages
JSP/Java Servlets
Microsoft SQL Server
Daily Backup
Dedicated Servers
Streaming Audio/Video
24-hour Support    

jobs.webdeveloper.com

Hiermenus


e-commerce
Partner With Us















Developer Channel
FlashKit.com
JavaScript.com
JavaScriptSource
Developer Jobs
ScriptSearch
StreamingMediaWorld
Web Developer's Journal
Web Developer's Virtual Library
WebDeveloper.com
Webreference
Web Hosts
XMLfiles.com

internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers


Using Modules

September 28, 1998

To use a module, all you need to do is use the "use" keyword. For example to use the Cat module, you would use:

     use Cat;

Here we have a module called Cat.pm

     #!/usr/sbin/perl
     package Cat;
     sub new {
        my $class = shift;
        my $self = {};
        bless $self;
        if (defined $_[0]) {
                $self->{'name'} = shift;
                }
        if (defined $_[0]) {
                $self->{'color'} = shift;
                }
        return $self;
        }

     sub meow {
        print "meow\n";
        }

     sub printDetails {
        my $self = shift;
        print "$self->{name}\n";
        print "$self->{color}\n";
        }
     1;

Let's use Cat.pm in a program called test.pl

     #!/usr/sbin/perl
     use Cat;
     my($cat) = new Cat("Fred", "white");
     $cat->meow();

There are an incredible number of modules out there for you to use at archives such as CPAN. In fact, the best way to go about practicing using modules is to go out and find some that you need. The fact is that there is probably a Perl module already written for all of the simple to complex tasks you will need for 98% of your projects. You needn't write the code yourself cause it has already been written!

Modules
Introduction to Perl 5 | Table of Contents
Miscellaneous Constructs



Up to => Home / Authoring / Languages / Perl / 5




Jupiter Online Media: internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and Jupiter Online Media

Jupitermedia Corporate Info


Legal Notices, Licensing, & Permissions, Privacy Policy.

Web Hosting | Newsletters | Tech Jobs | Shopping | E-mail Offers