user5503784
user5503784

Reputation:

What is a universal class in perl?

Please help me. I am doing an assignment and I couldn't find the answers for this question.I tried many web sites but there no answer in any of them. What is a universal class in perl? What is it's use.

Upvotes: 1

Views: 105

Answers (1)

simbabque
simbabque

Reputation: 54371

If the question is indeed for a universal class, then that question is going to be very hard to answer. That implies that there is a concept with that name, and that you can apply that concept to your class. But that is not the case.

There is only the UNIVERSAL class in Perl. Here, UNIVERSAL is the name of a specific class. It is the base class for all other classes. As Hunter McMillan pointed out in their comment on your question, you should read the perldoc on UNIVERSAL.

Upvotes: 5

Related Questions