InterviewSolution
Saved Bookmarks
| 1. |
What are objects in Perl? |
|
Answer» A Perl object is SIMPLY a reference of the data TYPE that performs various OPERATIONS on behalf of that class. Perl stores the class object as a reference in a scalar variable. As we know, scalars can hold a reference to the object; PROGRAMMERS can use the same scalar to have different class OBJECTS. |
|