package a;
sub func {
print 1;
}
package main;
a::->func;

IMO it's enough to have a::func,a->func.

a::->func; looks very strange to me, why Perl supports this kind of strange looking syntax?

link|improve this question

53% accept rate
5  
If you think that syntax is strange... – pst Sep 5 '11 at 4:06
8  
Perl needs neither reasons nor excuses. Perl is Perl. – Ignacio Vazquez-Abrams Sep 5 '11 at 4:07
@pst - I dare you to present a stranger one :) – DVK Sep 5 '11 at 4:25
@DVK, v97->func() – ikegami Sep 5 '11 at 6:39
@ikegami: wondrous! – tripleee Sep 5 '11 at 6:50
feedback

2 Answers

up vote 23 down vote accepted

To quote chromatic's excellent recent blog post on the topic at Modern Perl blog: "To avoid bareword parsing ambiguity."

To illustrate why such syntax is useful, here's an example evolved from your sample:

package a;
our $fh;
use IO::File;
sub s {
    return $fh = IO::File->new();
}

package a::s;
sub binmode {
    print "BINMODE\n";
}

package main;
a::s->binmode; # does that mean a::s()->binmode ?
               # calling sub "s()" from package a; 
               # and then executing sub "open" of the returned object?
               # In other words, equivalent to $obj = a::s(); $obj->binmode();
               # Meaning, set the binmode on a newly created IO::File object?

a::s->binmode; # OR, does that mean "a::s"->binmode() ?
               # calling sub "binmode()" from package a::s; 
               # Meaning, print "BINMODE"

a::s::->binmode; # Not ambiguous - we KNOW it's the latter option - print "BINMODE"
link|improve this answer
feedback

a:: is a string literal that produces the string a. All the same:

 a->func()    # Only if a doesn't exist as a function.
 "a"->func()
 'a'->func()
 a::->func()
 v97->func()
 chr(97)->func()

etc

>perl -E"say('a', a, a::, v97, chr(97))"
aaaaa
link|improve this answer
1  
+1. Another +1 if you tell me how to unremember the last two. – DVK Sep 5 '11 at 11:26
@DVK, chr is a very useful function. This is obviously not the place to use it, though. v97 is a version string, and it's not even particularly good to use as a version string. – ikegami Sep 6 '11 at 0:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.