in reply to Perl's Reflective and Introspective Capabilities?

"Reflection" is usually understood to be about the ability to query a class about its methods and invoke those methods symbolically. Perl does this just fine, with one significant limitation: Perl methods don't have "signatures" in the same way that Java or C++ methods do. Using base Perl functionality, you can't query a class and gather information about the arguments that a method expects.

  • Comment on Re: Perl's Reflective and Introspective Capabilities?