prototype EXPR |
返回一個字符串,其中包含指定的EXPR的函數或參考的原型,或undef如果函數冇有原型。
您也可以使用這個搜索查詢內置的函數。
undef 如果冇有函數原型prototype
string 包含功能的原型或參考指定的EXPR
試試下麵的例子:
#!/usr/bin/perl -w #by www.gitbook.net $func_prototype = prototype ( "myprint" ); print "myprint prototype is $func_prototype\n"; sub myprint($$){ print "This is test\n"; }
這將產生以下結果:
myprint prototype is $$