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

What are the advantages of perl programming?

1055


Which functions in perl allows you to include a module file. State their differences.

1016


Explain chop?

968


Mention how many ways you can express string in Perl?

1079


How do I pass a command line argument in perl?

1027


What is a chomp() function in perl?

1106


How to determine strings length in perl?

1024


What does last statement do in perl?

1071


Explain chomp?

972


What does init 5 and init 0 do?

1071


What is the purpose of goto expr statement?

965


What is eval function in perl?

1003


How can you use Perl warnings and what is the importance to use them?

1028


In Perl, what is grep function used for?

1140


What are the arguments and what do they mean in perl programming?

1055