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

Answers were Sorted based on User's Feedback



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

Answer / 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

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

Answer / vipul dalwala

Say Pachage is My Package

package MyPackage;

sub method() {

}


Then U can create Object

$myobject = new MyPackage();

and u can call any method of object like:

$myobject->method();

Is This Answer Correct ?    3 Yes 1 No

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

Answer / bhagwat gupta

--Like you do in any perl programme.

package PackageName;

use RelativePath::ModuleName;# The Class as per your questn
...
...

my $object = ModuleName->new();
...
...
1;

Is This Answer Correct ?    0 Yes 1 No

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

Answer / 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

More CGI Perl Interview Questions

What are the advantages of perl programming?

0 Answers  


What is perl scripting?

0 Answers  


what are prefix dereferencer and list them out?

0 Answers  


What are the advantages of programming in perl?

0 Answers  


Explain the difference between my and local?

2 Answers  






Why do we use "use strict" in perl?

0 Answers  


What is “grep” function in perl?

0 Answers  


Explain regular expression in perl?

0 Answers  


What is epoch time in perl?

0 Answers  


What is lexical variable in perl?

0 Answers  


Write a program to concatenate the $firststring and $secondstring and result of these strings should be separated by a single space.

0 Answers  


What is the difference between module and package?

4 Answers   EDS, IBM, Symantec,


Categories