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 / shah faisal

package Test;

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

bless $ref,$class;
return $ref;
}
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 ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

If you want to empty an array then how would you do that?

1031


What is confess function in perl?

891


what is the function that is used to identify how many characters are there in a string?

905


Explain substr function in perl?

958


explain the various functions/directives in perl that allow you to include/import a module. Also, state the differences between them.

810


What is grep used for in perl?

872


Explain ivalue in perl?

906


What is q (single q) operator in perl?

1006


What is the use of now constructor in perl?

905


Comment on the scope of variables in perl.

880


We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?

2401


Where do we require ‘chomp’ and what does it mean?

911


When do you use perl programming?

939


What exactly is grooving and shortening of the array?

956


What are scalars?

938