Perl prototype 函数
-
描述
prototype 此函数返回一个字符串,其中包含该函数的原型或由EXPR指定的引用;如果该函数没有原型,则返回undef。您还可以使用它来检查内置功能的可用性。 -
句法
以下是此函数的简单语法-prototype EXPR
-
返回值
如果没有函数原型,则此函数返回undef,否则返回包含EXPR指定的函数原型或引用的字符串。 -
示例
以下是显示其基本用法的示例代码-
尝试一下$func_prototype = prototype ( "myprint" ); print "myprint prototype is $func_prototype\n"; sub myprint($) { print "This is test\n"; }
执行结果:myprint prototype is $