
- Perl Basics
- Perl - Home
- Perl - Introduction
- Perl - Environment
- Perl - Syntax Overview
- Perl - Data Types
- Perl - Variables
- Perl - Scalars
- Perl - Arrays
- Perl - Hashes
- Perl - IF...ELSE
- Perl - Loops
- Perl - Operators
- Perl - Date & Time
- Perl - Subroutines
- Perl - References
- Perl - Formats
- Perl - File I/O
- Perl - Directories
- Perl - Error Handling
- Perl - Special Variables
- Perl - Coding Standard
- Perl - Regular Expressions
- Perl - Sending Email
- Perl Advanced
- Perl - Socket Programming
- Perl - Object Oriented
- Perl - Database Access
- Perl - CGI Programming
- Perl - Packages & Modules
- Perl - Process Management
- Perl - Embedded Documentation
- Perl - Functions References
- Perl Useful Resources
- Perl - Questions and Answers
- Perl - Quick Guide
- Perl - Cheatsheet
- Perl - Useful Resources
- Perl - Discussion
Object Oriented Programming in PERL



Before we start Object Oriented concept of perl, lets understand references and anonymous arrays and hashes References
Creating Hard ReferencesThe unary backslash operator is used to create a reference to a named variable or subroutine, for example:
The $fooref variable now contains a hard reference to the $foo variable. You can do the same with other variables:
To create a reference to a subroutine:
Anonymous ArraysWhen you create a reference to an array directly - that is, without creating an intervening named array - you are creating an anonymous array. Creating an anonymous array is easy:
This line assigns an array, indicated by the enclosing square brackets instead of the normal parentheses, to the scalar $array. The values on the right side of the assignment make up the array, and the left side contains the reference to this array. You can create more complex structures by nesting arrays:
The @arrayarray now contains three elements; the third element is a reference to an anonymous array of three elements. Anonymous HashesAnonymous hashes are similarly easy to create, except you use braces instead of square brackets:
DereferencingThe most direct way of dereferencing a reference is to prepend the corresponding data type character ($ for scalars, @ for arrays, % for hashes, and & for subroutines) that you are expecting in front of the scalar variable containing the reference. For example, to dereference a scalar reference $foo, you would access the data as $$foo. Other examples are:
Object BasicsThere are three main terms, explained from the point of view of how Perl handles objects. The terms are object, class, and method.
Defining a ClassIts very simple to define a class. In Perl, a class is corresponds to a Package.To create a class in Perl, we first build a package. A package is a self-contained unit of user-defined variables and subroutines, which can be re-used over and over again. They provide a separate namespace within a Perl program that keeps subroutines and variables from conflicting with those in other packages. To declare a class named Person in Perl we do:
The scope of the package definition extends to the end of the file, or until another package keyword is encountered. Creating and Using ObjectsTo create an instance of a class (an object) we need an object constructor. This constructor is a method defined within the package. Most programmers choose to name this object constructor method new, but in Perl one can use any name. One can use any kind of Perl variable as an object in Perl. Most Perl programmers choose either references to arrays or hashes. Let's create our constructor for our Person class using a Perl hash reference; When creating an object, you need to supply a constructor. This is a subroutine within a package that returns an object reference. The object reference is created by blessing a reference to the package's class. For example:
Every method of a class passes first argument as class name. So in the above example class name would be "Person". You can try this out by printing value of $class. Next rest of the arguments will be rest of the arguments passed to the method. Now Let us see how to create an Object
You can use simple hash in your consturctor if you don't want to assign any value to any class variable. For example
Defining MethodsOther object-oriented languages have the concept of security of data to prevent a programmer from changing an object data directly and so provide accessor methods to modify object data. Perl does not have private variables but we can still use the concept of helper functions methods and ask programmers to not mess with our object innards. Lets define a helper method to get person first name:
Another helper function to set person first name:
Lets have a look into complete example: Keep Person package and helper functions into Person.pm file
Now create Person object in mail.pl fileas follows
InheritanceObject-oriented programming sometimes involves inheritance. Inheritance simply means allowing one class called the Child to inherit methods and attributes from another, called the Parent, so you don't have to write the same code again and again. For example, we can have a class Employee which inherits from Person. This is referred to as an "isa" relationship because an employee is a person. Perl has a special variable, @ISA, to help with this. @ISA governs (method) inheritance. Following are noteable points while using inheritance
So to create a new Employee class that will inherit methods and attributes from our Person class, we simply code: Keep this code into Employee.pm
Now Employee Class has all the methods and attributes inherited from Person class and you can use it as follows: Use main.pl file to test it
Method OverridingThe child class Employee inherits all the methods from parent class Person. But if you would like to override those methods in your child class then you can do it by givig your implementation. You can add your additional functions in child class. It can done as follows: modify Employee.pm file
Now put following code into main.pl and execute it.
Default AutoloadingPerl offers a feature which you would not find any many other programming languages: a default subroutine. If you define a function called AUTOLOAD() then any calls to undefined subroutines will call AUTOLOAD() function. The name of the missing subroutine is accessible within this subroutine as $AUTOLOAD. This function is very useful for error handling purpose. Here is an example to implement AUTOLOAD, you can implement this function in your way.
Destructors and Garbage CollectionIf you have programmed using objects before, then you will be aware of the need to create a .destructor. to free the memory allocated to the object when you have finished using it. Perl does this automatically for you as soon as the object goes out of scope. In case you want to implement your destructore which should take care of closing files or doing some extra processing then you need to define a special method called DESTROY. This method will be called on the object just before Perl frees the memory allocated to it. In all other respects, the DESTROY method is just like any other, and you can do anything you like with the object in order to close it properly. A destructor method is simply a member function (subroutine) named DESTROY which will be automatically called
For Example:
Another OOP ExampleHere is another nice example which will help you to understand Object Oriented Concepts of Perl. Put this source code into any file and execute it.
|



Advertisements |