Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Indirect object syntax (RE: Beginnings of Online CGI Course)

by tye (Sage)
on Oct 06, 2000 at 22:10 UTC ( [id://35632]=note: print w/replies, xml ) Need Help??


in reply to RE: Beginnings of Online CGI Course
in thread Beginnings of Online CGI Course

new CGI is easily misunderstood. Some even suggest that you should write CGI::->new() to prevent CGI->new() being interpretted as main::CGI()->new(), which is possible. I'm not completely decided on that last point because I don't think it is supported in moderately old versions of Perl and I feel that I can usually avoid having functions that have the same name as modules that I use. I will probably convert to CGI::->new() before too long, though.

So let's consider:

my $q= new CGI;
What if you do this from a package? You probably have a new() method of your own and now you've (probably) done:
my $q= new( "CGI" );
I think there are also gotchas with regard to confusing precedence, but I don't recall them.

So many (including me) suggest that you always avoid "indirect object" notation. This might also apply to the standard:

print HANDLE "Stuff\n";
which should instead be written:
HANDLE->print( "Stuff\n" );
but I've not seen that point pushed much. I personally think that things will slowly migrate that direction, though.

        - tye (but my friends call me "Tye")

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://35632]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-20 04:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found