Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can you create an object of a class in a package?

Answer Posted / sh faisal

package Test;

sub new
{
$class = shift;
$self = {};

bless $self,$class; # By Mistake earlier i wrote it as
#$ref
return $self;
}
1;
# In perl Script

use Test; # Include the module you have created
$obj=new Test; # creating an onject of Class Test

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

You want to concatenate strings with perl. How would you do that?

876


What does undef function in perl?

948


Write a script to reverse a string without using perl's built in functions?

989


What does delete function do in perl?

985


What is the use of -w, -t and strict in Perl?

992


Explain regular expression in perl?

961


Explain the meaning of closure in perl.

1031


In Perl we can show the warnings using some options in order to reduce or avoid the errors. What are that options?

1005


How to read a directory in perl?

1038


How do you give functions private variables that retain their values between calls?

946


How to renaming a file in perl programming?

1059


How will you create a file in perl?

991


Why we use CGI?

2537


what is the difference between java and cgi?

1076


What does cgi program store?

918