描述
此函数返回一个字符串,其中包含 EXPR 指定的函数或引用的原型,如果函数没有原型,则返回 undef。
您还可以使用它来检查 内置 函数的可用性。
用法
以下是此函数的简单语法 -
prototype EXPR
返回值
如果没有函数原型,则此函数返回 undef 否则返回包含 EXPR 指定的函数或引用的原型的字符串。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
$func_prototype = prototype ( "myprint" );
print "myprint prototype is $func_prototype\n";
sub myprint($$) {
print "This is test\n";
}
执行上述代码时,会产生以下结果 -
myprint prototype is $$
相关用法
- Perl prototype()用法及代码示例
- Perl printf用法及代码示例
- Perl print用法及代码示例
- Perl print() and say()用法及代码示例
- Perl push()用法及代码示例
- Perl pipe用法及代码示例
- Perl pack用法及代码示例
- Perl push用法及代码示例
- Perl pos用法及代码示例
- Perl pop用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
注:本文由纯净天空筛选整理自 Perl prototype Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。